diff --git a/.gitattributes b/.gitattributes
index 81ef15fb667f8012e5037d53e12b5b4b2f3873ef..093991efc23be6351eaaae05d98987de984846d4 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -206,3 +206,14 @@ runs/i5-constant-lm/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs
runs/i5-constant-lm/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/i5-constant-lm/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/i5-constant-lm/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/i5-exp-lm/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/i5-exp-lm/checkpoint-1080/chat_template.jinja b/runs/i5-exp-lm/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-1080/config.json b/runs/i5-exp-lm/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-1080/generation_config.json b/runs/i5-exp-lm/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-1080/model.safetensors b/runs/i5-exp-lm/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c2953249ec785f4aad6dcbeb6fa327871f95229b
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b9c39cb8537e8b83f6e3be3a4d653133258c341eceb0a8b1965a71ba67edd94a
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-1080/optimizer.pt b/runs/i5-exp-lm/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..27d277e7f6184a721bdd9fed3706f35462e3599f
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f4928ebb4972a4dd23e775906c618019a1dc182a4693b22703c2a17341977b5
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-1080/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..8b890a587bc7fb00ec91a0b326db35ad121e30ac
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a9d4b055cc5889d96ce7c0582285cfa31be14ffdd0c7cced877706aba4608119
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-1080/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1216425e515b8da1859343157b39bd8c65d971d8
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:da29be930a94b15dc579e856d1d04b239fb4f33376bb7a1defb2993c22839b4c
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-1080/scheduler.pt b/runs/i5-exp-lm/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6460bf7d5e8aadff08654c5c446813d18e721d62
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bd8f1c3c3cf1427d3265ecb044cf76510643402bb89ce35df8f605375b066d14
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-1080/tokenizer.json b/runs/i5-exp-lm/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-1080/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-1080/trainer_state.json b/runs/i5-exp-lm/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..86aba9cc864763f0d78ea9cb3e0ec43b88993c49
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/trainer_state.json
@@ -0,0 +1,7706 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 15.0,
+ "eval_steps": 500,
+ "global_step": 1080,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 4.6024093782245376e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-1080/training_args.bin b/runs/i5-exp-lm/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-1440/chat_template.jinja b/runs/i5-exp-lm/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-1440/config.json b/runs/i5-exp-lm/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-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.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-1440/generation_config.json b/runs/i5-exp-lm/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-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.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-1440/model.safetensors b/runs/i5-exp-lm/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..78dac161a448958dbf54df53fb24bd9d210f7264
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:00863cb5cb898b11a738d85591edbb322d7145829a568d0891ed3b082f875003
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-1440/optimizer.pt b/runs/i5-exp-lm/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b74b0a1f934815e92cd0138e475849d33f167c79
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6a58e8de114a04c3f4337a083ffd2921277122227062034ff0fe301f7608cd46
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-1440/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e092a0a689cd0752bb8edc99ecfde5533e68b01f
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a92541d441f98b87da8cdbf9b238fc37dc4856aea86fc1915580b3442a819ab0
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-1440/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..dd13055ded60006d48c3e2ba920e72572916b3b1
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:97dc143923e504b0b8be84021f4377a0ee7a0452de7563273767673afaa7f511
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-1440/scheduler.pt b/runs/i5-exp-lm/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..59b8db4a485766e1d20d11a905a37774da0cec09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2fe49e98b5d706cd9174dc7cf5e5cd5039ca03537426b9020792a5363720022f
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-1440/tokenizer.json b/runs/i5-exp-lm/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-1440/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-1440/trainer_state.json b/runs/i5-exp-lm/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..19ab36951155a20f26885d4895dbdddda4ece8f3
--- /dev/null
+++ b/runs/i5-exp-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": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 6.136545837632717e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-1440/training_args.bin b/runs/i5-exp-lm/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-1800/chat_template.jinja b/runs/i5-exp-lm/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-1800/config.json b/runs/i5-exp-lm/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-1800/generation_config.json b/runs/i5-exp-lm/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-1800/model.safetensors b/runs/i5-exp-lm/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..1d5a8c2f3dcec16964d7bc9e3f3fef68d8c6b665
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68807697e0aed60d769c932772149be358441273ade654f647aecae4d7147092
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-1800/optimizer.pt b/runs/i5-exp-lm/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..772cb75ff3d7fd308f4e8e99f011771288abc524
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:da2354dd1ba1afadf99b7af06d68cdf2a477969ddc4724ec8978a613b6f91636
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-1800/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f3aec14196ee5cfce0e3fe15a035a190275d02ef
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e332772d37cd9279d2a48347243937f9a08f6b197c578fe8ff864d24aac5922d
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-1800/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4945caaad28a3230ae7111c82dd43316b93fb42f
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4756882fc4c4f604961ea46f8bdcab5e93129b71f1285b615409af669bb0ae39
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-1800/scheduler.pt b/runs/i5-exp-lm/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6e0ba2afe167e5831737cd4b431b166033f17fab
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ee9cab552a4cabfd465ec6f079c65fbe7304d4a3df75e2e2b3e2eb614e447c70
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-1800/tokenizer.json b/runs/i5-exp-lm/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-1800/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-1800/trainer_state.json b/runs/i5-exp-lm/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..cbf5feb23c80740c999ab0659c3010c411434460
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/trainer_state.json
@@ -0,0 +1,12826 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 25.0,
+ "eval_steps": 500,
+ "global_step": 1800,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.551431655883789,
+ "eval_runtime": 85.7406,
+ "eval_samples_per_second": 28.481,
+ "eval_steps_per_second": 1.784,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.009876579977571964,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 4.164706230163574,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.012572702020406723,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 4.014013767242432,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.01369260810315609,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 4.120209693908691,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.014534002169966698,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 4.229783058166504,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.015219368040561676,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 4.105164527893066,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.015543874353170395,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 4.066263198852539,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.0142653938382864,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 4.1460795402526855,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.014713063836097717,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 4.139624118804932,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.014000465162098408,
+ "learning_rate": 0.000407857329622967,
+ "loss": 4.002811908721924,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.013888941146433353,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 4.17318058013916,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.014635670930147171,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 4.152536392211914,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.015171809121966362,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 4.1005167961120605,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.01345653086900711,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 4.135690689086914,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.013164847157895565,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 4.149524211883545,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.013102286495268345,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 4.193521499633789,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.011267323978245258,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 4.1657867431640625,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.011742684058845043,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 4.1137213706970215,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.01192871481180191,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 4.260440826416016,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.013026650995016098,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 4.185743808746338,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.013810441829264164,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 4.054473400115967,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.011503677815198898,
+ "learning_rate": 0.000404858275823277,
+ "loss": 4.185676574707031,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.01065174862742424,
+ "learning_rate": 0.000404607816444578,
+ "loss": 4.013198375701904,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.011239566840231419,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 4.118226528167725,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.012186541222035885,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 4.185783863067627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.01248143333941698,
+ "learning_rate": 0.000403855947934478,
+ "loss": 4.125214099884033,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.012454871088266373,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 4.112842559814453,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.012563669122755527,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 4.154864311218262,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.012546264566481113,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 4.123438835144043,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.01277274452149868,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 4.163538932800293,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.011936571449041367,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 4.101528167724609,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.01149666029959917,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 4.040679931640625,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.01097810547798872,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 4.136455535888672,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.009719183668494225,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 4.041109085083008,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.00986333005130291,
+ "learning_rate": 0.000401595976318565,
+ "loss": 4.124299049377441,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.00912073440849781,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 4.199904441833496,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.009418101981282234,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 4.151755332946777,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.009513386525213718,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 4.254427909851074,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.009743732400238514,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 4.140321731567383,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.00963711366057396,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 4.124331474304199,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.010302593000233173,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 4.132112979888916,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.011983472853899002,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 4.160226821899414,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.012036876752972603,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 4.095509052276611,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.01125854067504406,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 4.117288589477539,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.011722338385879993,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 4.193219184875488,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.012395180761814117,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 4.120162487030029,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.011256304569542408,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 4.083768367767334,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.01025543361902237,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 4.049867630004883,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.010927550494670868,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 4.256014823913574,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.011399165727198124,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 4.091549396514893,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.010450828820466995,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 4.204381942749023,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.011282199062407017,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 4.153038501739502,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.010513713583350182,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 4.108619213104248,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.010266946628689766,
+ "learning_rate": 0.000396803974909638,
+ "loss": 4.169204235076904,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.010166850872337818,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 4.096996307373047,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.01009226031601429,
+ "learning_rate": 0.000396297942393265,
+ "loss": 4.104363441467285,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.010323838330805302,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 4.194367408752441,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.01049391832202673,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 4.116766929626465,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.011563598178327084,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 4.131492614746094,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.011230280622839928,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 4.169009685516357,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.009461907669901848,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 4.137299060821533,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.010689560323953629,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 4.214145660400391,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.011656688526272774,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 4.166624069213867,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.011863510124385357,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 4.131100177764893,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.010448232293128967,
+ "learning_rate": 0.000394017098798633,
+ "loss": 4.101202964782715,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.010062103159725666,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 4.161185264587402,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.01093286368995905,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 4.042693138122559,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.010100377723574638,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 4.060758113861084,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.010339124128222466,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 4.20787239074707,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.010003306902945042,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 4.067782402038574,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.010493419133126736,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 4.125699996948242,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.010171142406761646,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 4.1621246337890625,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.011140113696455956,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 4.237761497497559,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.567854881286621,
+ "eval_runtime": 84.4609,
+ "eval_samples_per_second": 28.913,
+ "eval_steps_per_second": 1.811,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.01077568531036377,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 4.181587219238281,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.01187620684504509,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 4.131726264953613,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.013522771187126637,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 4.122220993041992,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.013684876263141632,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 4.041871070861816,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.013173004612326622,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.970202922821045,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.012073843739926815,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.8631794452667236,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.01288041565567255,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 4.006192207336426,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.013644886203110218,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 4.2370381355285645,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.013753894716501236,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.9589552879333496,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.012465177103877068,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 4.035869598388672,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.011406811885535717,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 4.080760955810547,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.012969305738806725,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 4.074190139770508,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.013275290839374065,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 4.067647933959961,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.01310755591839552,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 4.096287250518799,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.012664602138102055,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.9706339836120605,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.010615247301757336,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 4.117854118347168,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.01068687904626131,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 4.052369117736816,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.011366557329893112,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 4.138422966003418,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.011061202734708786,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 4.126469612121582,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.011635071597993374,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.968297004699707,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.011073353700339794,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 4.075834274291992,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.011658500880002975,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 4.061251640319824,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.012086226604878902,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 4.1972856521606445,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.012222395278513432,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 4.097524642944336,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.011842718347907066,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 4.149069786071777,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.011621825397014618,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 4.0996832847595215,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.010307750664651394,
+ "learning_rate": 0.00038509205478744,
+ "loss": 4.089378356933594,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.009588676504790783,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 4.066476821899414,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.010809775441884995,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 4.19119930267334,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.012743748724460602,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 4.0750932693481445,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.011777926236391068,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 4.044826507568359,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.010044556111097336,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 4.1896867752075195,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.011860032565891743,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 4.092286109924316,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.012056638486683369,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 4.116976737976074,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.011735365726053715,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 4.148249626159668,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.010875556617975235,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 4.195129871368408,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.010493649169802666,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 4.163764476776123,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.010560980066657066,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 4.122279644012451,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.010246366262435913,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 4.1063714027404785,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.00991209875792265,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 4.08073616027832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.009893461130559444,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 4.134050369262695,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.009423932991921902,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 4.193440914154053,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.00842279102653265,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 4.058138847351074,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.00924934446811676,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 4.018709182739258,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.009752786718308926,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 4.012757778167725,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.009239202365279198,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 4.1526408195495605,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.009407109580934048,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 4.116143226623535,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.009414082393050194,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 4.100341796875,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.009516751393675804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 4.085671424865723,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.008972907438874245,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 4.1414794921875,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.009903272613883018,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.919322967529297,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.010267534293234348,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 4.123221397399902,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.011000022292137146,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 4.159793376922607,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.012496626935899258,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 4.062358379364014,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.012963531538844109,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 4.136105537414551,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.01102963276207447,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 4.005084037780762,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.010507521219551563,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 4.038727760314941,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.010605179704725742,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 4.083990097045898,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.010178995318710804,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 4.0194501876831055,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.011055036447942257,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 4.088884353637695,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.00979774259030819,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 4.078244209289551,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.00978800468146801,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 4.1270880699157715,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.009614141657948494,
+ "learning_rate": 0.000375827577564042,
+ "loss": 4.101253509521484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.009357909671962261,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 4.099915027618408,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.009440246038138866,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 4.164741039276123,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.008768280036747456,
+ "learning_rate": 0.000375051971546236,
+ "loss": 4.124988079071045,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.009859531186521053,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 4.220903396606445,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.010455301962792873,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 4.152346611022949,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.009803061373531818,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 4.048665523529053,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.009574026800692081,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 4.0821943283081055,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.009048961102962494,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 4.041666507720947,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.010180778801441193,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 4.200588703155518,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.604552745819092,
+ "eval_runtime": 84.8713,
+ "eval_samples_per_second": 28.773,
+ "eval_steps_per_second": 1.803,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.011329853907227516,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.9900457859039307,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.014984005130827427,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 4.07473611831665,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.016141744330525398,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.9724981784820557,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.01465766504406929,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.9986071586608887,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.015666628256440163,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 4.071915626525879,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.014640172012150288,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 4.036019325256348,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.01469016820192337,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 4.05607271194458,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.014554283581674099,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 4.129990577697754,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.014493918046355247,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 4.062219619750977,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.014379715546965599,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 4.062480926513672,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.013458595611155033,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.9154977798461914,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.012699708342552185,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.9537384510040283,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.011132895946502686,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 4.0615739822387695,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.011430074460804462,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 4.143531799316406,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.01210040133446455,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 4.012790679931641,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.012245144695043564,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 4.106157302856445,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.012887321412563324,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 4.015830993652344,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.012803677469491959,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 4.1782965660095215,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.011368817649781704,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 4.072640419006348,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.010358075611293316,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 4.098837852478027,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.010589832440018654,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 4.117313861846924,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.010321256704628468,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 4.218641757965088,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.011689630337059498,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.9875400066375732,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.010908936150372028,
+ "learning_rate": 0.000367268105959126,
+ "loss": 4.027227401733398,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.010584350675344467,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 4.10093879699707,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.01010285597294569,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 4.074665546417236,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.011812037788331509,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 4.034531593322754,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.011600959114730358,
+ "learning_rate": 0.000366226612810024,
+ "loss": 4.113184928894043,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.010876321233808994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 4.070537567138672,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.009968291968107224,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 4.203442096710205,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.011262387968599796,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 4.0556769371032715,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.01032582949846983,
+ "learning_rate": 0.000365184304613104,
+ "loss": 4.08148193359375,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.010996437631547451,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 4.057895660400391,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.010615769773721695,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 4.124999046325684,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.010909738019108772,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 4.031045913696289,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.010457244701683521,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 4.011176109313965,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.010345135815441608,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 4.030368328094482,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.00980544276535511,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 4.110050678253174,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.009972338564693928,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 4.00167179107666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.010071652941405773,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.9824132919311523,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.010037647560238838,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 4.027332305908203,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.010439334437251091,
+ "learning_rate": 0.000362575056487632,
+ "loss": 4.065634727478027,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.009809018112719059,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 4.128786563873291,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.009842394851148129,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 4.052270889282227,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.00916555617004633,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 4.145816326141357,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.00887344591319561,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 4.095729827880859,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.009776724502444267,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 4.113144397735596,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.009635286405682564,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.942356586456299,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.009097062051296234,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 4.117036819458008,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.009455705061554909,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 4.096042633056641,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.010677946731448174,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.999386787414551,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.009964345954358578,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 4.168429374694824,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.009584939107298851,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 4.039562225341797,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.009133868850767612,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 4.137625694274902,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.009551159106194973,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 4.130338668823242,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.009856447577476501,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 4.096878528594971,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.009551186114549637,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.99261474609375,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.009219125844538212,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 4.010861396789551,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.00918554700911045,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.981205463409424,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.009746214374899864,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 4.120397567749023,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.010356797836720943,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 4.019916534423828,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.010084329172968864,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 4.065004348754883,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.009301368147134781,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 4.122297763824463,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.009626660495996475,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 4.1999053955078125,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.010422289371490479,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.995299816131592,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.011208872310817242,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 4.0599751472473145,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.010681918822228909,
+ "learning_rate": 0.000356031397755195,
+ "loss": 4.077420711517334,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.01082858256995678,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 4.202306270599365,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.010040241293609142,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 4.226383209228516,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.009776259772479534,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 4.0426506996154785,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.009816191159188747,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 4.10113525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.011430559679865837,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.9381566047668457,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.570052623748779,
+ "eval_runtime": 84.6451,
+ "eval_samples_per_second": 28.85,
+ "eval_steps_per_second": 1.808,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.011132825165987015,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 4.0361833572387695,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.012743635103106499,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.924943685531616,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.013857677578926086,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.922771453857422,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.014101691544055939,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 4.15196418762207,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.014825007878243923,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 4.034111976623535,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.01563287526369095,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.931384563446045,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.014393665827810764,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.886596202850342,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.013301689177751541,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 4.0370354652404785,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.012488034553825855,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 4.0232696533203125,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.011063582263886929,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.981332302093506,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.012320222333073616,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.9484620094299316,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.011997769586741924,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 4.041739463806152,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.011553142219781876,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 4.001791954040527,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.011633829213678837,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.917846202850342,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.011593331582844257,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 4.075129508972168,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.011368625797331333,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 4.026906967163086,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.010605502873659134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 4.071677207946777,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.010172054171562195,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.945216655731201,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.010856307111680508,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.971095323562622,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.009842454455792904,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 4.060256481170654,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.010291303507983685,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.9854986667633057,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.009987153112888336,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 4.0489726066589355,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.010083730332553387,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.998929023742676,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.010800480842590332,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 4.100696086883545,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.010760601609945297,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.942884922027588,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.011136551387608051,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 4.020368576049805,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.01087525486946106,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.970954418182373,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.010280475951731205,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 4.104029655456543,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.010815252549946308,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 4.010892391204834,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.010867281816899776,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 4.0223493576049805,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.010291614569723606,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.979717254638672,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.009741781279444695,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 4.018221855163574,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.011015533469617367,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 4.026700973510742,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.010466188192367554,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 4.101867198944092,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.01033122930675745,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 4.045816898345947,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.010766522027552128,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.996644973754883,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.010843119584023952,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.97576642036438,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.012119865044951439,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.882136821746826,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.012413941323757172,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 4.005892753601074,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.011253178119659424,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 4.066131591796875,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.009961821138858795,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 4.015138626098633,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.010008499026298523,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 4.022852897644043,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.010745653882622719,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.9275522232055664,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.010398740880191326,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 4.0531721115112305,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.01038513332605362,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 4.061971664428711,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.009928431361913681,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 4.143259048461914,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.010413208045065403,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 4.061119556427002,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.01139519177377224,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 4.09278678894043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.011986100114881992,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.947401523590088,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.011387983337044716,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 4.068734169006348,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.009954501874744892,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 4.070131778717041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.00955903809517622,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.9322071075439453,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.010283265262842178,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.9960098266601562,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.010511606931686401,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.9909510612487793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.009582840837538242,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 4.079389572143555,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.00974298920482397,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 4.138494491577148,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.010466743260622025,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 4.056201457977295,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.010316438972949982,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 4.099299907684326,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.010122894309461117,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 4.239686965942383,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.009907642379403114,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.9789676666259766,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.01069258525967598,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 4.041545391082764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.01007404737174511,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 4.071598052978516,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.009585035033524036,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.9430413246154785,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.010451397858560085,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 4.13792085647583,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.011326397769153118,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.914581775665283,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.011229630559682846,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.9398770332336426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.009682882577180862,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 4.08770227432251,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.009850278496742249,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 4.091458797454834,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.010133294388651848,
+ "learning_rate": 0.000336518346307424,
+ "loss": 4.060453414916992,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.011278501711785793,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 4.080122947692871,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.011924702674150467,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 4.161231994628906,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.013833330944180489,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.9359490871429443,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.596139907836914,
+ "eval_runtime": 86.0775,
+ "eval_samples_per_second": 28.37,
+ "eval_steps_per_second": 1.777,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.013592035509645939,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.9522242546081543,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.013502624817192554,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 4.0113677978515625,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.013949453830718994,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.9946117401123047,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.014419623650610447,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.9795098304748535,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.01568395458161831,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 4.091269493103027,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.015030908398330212,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 4.062928676605225,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.013131589628756046,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 4.0576863288879395,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.013200934045016766,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.9778010845184326,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.013214852660894394,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 4.0181884765625,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.012748941779136658,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.8231043815612793,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.011799106374382973,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 4.045605659484863,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.011282660067081451,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.9676876068115234,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.0109232347458601,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.9386894702911377,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.011680151335895061,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.960446357727051,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.011029785498976707,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 4.071208477020264,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.010873311199247837,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.910928249359131,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.010651886463165283,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 4.041978359222412,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.010444678366184235,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 4.054442405700684,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.010614353232085705,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 4.05772590637207,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.01047259010374546,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.873579502105713,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.009985635057091713,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.993783712387085,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.010010694153606892,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.984926223754883,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.010369695723056793,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 4.085610389709473,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.010580260306596756,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.949125289916992,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.01043667085468769,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.9963903427124023,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.010741197504103184,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 4.053349018096924,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.010334794409573078,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 4.120090007781982,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.01040970254689455,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.8926737308502197,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.010715796612203121,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.9743237495422363,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.011393639259040356,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.98507022857666,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.010942629538476467,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.898818016052246,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.010325280018150806,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.8614513874053955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.010317712090909481,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.939861297607422,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.010228334926068783,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 4.04915189743042,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.010809719562530518,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 4.05153751373291,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.010143210180103779,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 4.1973876953125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.010687801986932755,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.9684720039367676,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.013338417746126652,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 4.0303544998168945,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.014791577123105526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 4.093402862548828,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.013393090106546879,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 4.098799228668213,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.012639272026717663,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.9800333976745605,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.011467873118817806,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 4.151701927185059,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.011315679177641869,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 4.113883972167969,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.011210434138774872,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.9912962913513184,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.01087957713752985,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.967313766479492,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.011848476715385914,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.978968620300293,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.011160468682646751,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 4.03514289855957,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.009814568795263767,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 4.026996612548828,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.009992859326303005,
+ "learning_rate": 0.000322712903929477,
+ "loss": 4.024201393127441,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.010100461542606354,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.955676555633545,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.009547922760248184,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.937321662902832,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.010318727232515812,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 4.056231498718262,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.009653892368078232,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 4.024428844451904,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.009993361309170723,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.950716018676758,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.01103970780968666,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.945801258087158,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.011700308881700039,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.9194111824035645,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.012860790826380253,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 4.030028343200684,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.011987055651843548,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.90966796875,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.010467334650456905,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.9390382766723633,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.010487129911780357,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.9514942169189453,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.010463234037160873,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 4.016255855560303,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.01121378131210804,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 4.002895355224609,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.010914308950304985,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 4.018136024475098,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.010348659940063953,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 4.03448486328125,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.009568385779857635,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 4.069923400878906,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.009966057725250721,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.914461135864258,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.00994907971471548,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.971266269683838,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.009441893547773361,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 4.057741165161133,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.009497676976025105,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 4.140096664428711,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.010003750212490559,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 4.040005207061768,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.009717513807117939,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 4.030487537384033,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.011040066368877888,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 4.065431594848633,
+ "step": 1800
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 7.670682297040896e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-1800/training_args.bin b/runs/i5-exp-lm/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-2160/chat_template.jinja b/runs/i5-exp-lm/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-2160/config.json b/runs/i5-exp-lm/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-2160/generation_config.json b/runs/i5-exp-lm/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-2160/model.safetensors b/runs/i5-exp-lm/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b6684b5e3748f899e7bdfee315941c368d88272b
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:50a731315ed8a7df9ed2592a9d931851d4add4e6d39a67719009a5ff580139eb
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-2160/optimizer.pt b/runs/i5-exp-lm/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a60cbe6336f59d59a178571b0d789b66c2f7b366
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59141da467c008d06273478fdbeb1380b317a613c84c8cdeb0b2de92c5c09571
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-2160/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..53ae6a5cdd457a7bd8dcf5136ce0b47ac5f9a964
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:27900b80b02b613d5e2698cac285f588592095899f1a20f7325272dcd39c22df
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-2160/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ca25968d4e18e4ec0b045aa2bb909e54f6156564
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1644381d4f391961c785404fa4c21852554b1b90a267007e2041a07a8fe5a2af
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-2160/scheduler.pt b/runs/i5-exp-lm/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..35aefe7762df83336d8bfddab210c09c85e6b3aa
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a7d6a0a5c94f665a32f55d7b034b4fc829f9f44c468d851ff5b24b22d8388e63
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-2160/tokenizer.json b/runs/i5-exp-lm/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-2160/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-2160/trainer_state.json b/runs/i5-exp-lm/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf33f4cc6b4f71b8b482918a70592ea484c72ddd
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/trainer_state.json
@@ -0,0 +1,15386 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 30.0,
+ "eval_steps": 500,
+ "global_step": 2160,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.551431655883789,
+ "eval_runtime": 85.7406,
+ "eval_samples_per_second": 28.481,
+ "eval_steps_per_second": 1.784,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.009876579977571964,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 4.164706230163574,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.012572702020406723,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 4.014013767242432,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.01369260810315609,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 4.120209693908691,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.014534002169966698,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 4.229783058166504,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.015219368040561676,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 4.105164527893066,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.015543874353170395,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 4.066263198852539,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.0142653938382864,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 4.1460795402526855,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.014713063836097717,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 4.139624118804932,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.014000465162098408,
+ "learning_rate": 0.000407857329622967,
+ "loss": 4.002811908721924,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.013888941146433353,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 4.17318058013916,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.014635670930147171,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 4.152536392211914,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.015171809121966362,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 4.1005167961120605,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.01345653086900711,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 4.135690689086914,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.013164847157895565,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 4.149524211883545,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.013102286495268345,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 4.193521499633789,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.011267323978245258,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 4.1657867431640625,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.011742684058845043,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 4.1137213706970215,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.01192871481180191,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 4.260440826416016,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.013026650995016098,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 4.185743808746338,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.013810441829264164,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 4.054473400115967,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.011503677815198898,
+ "learning_rate": 0.000404858275823277,
+ "loss": 4.185676574707031,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.01065174862742424,
+ "learning_rate": 0.000404607816444578,
+ "loss": 4.013198375701904,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.011239566840231419,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 4.118226528167725,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.012186541222035885,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 4.185783863067627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.01248143333941698,
+ "learning_rate": 0.000403855947934478,
+ "loss": 4.125214099884033,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.012454871088266373,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 4.112842559814453,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.012563669122755527,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 4.154864311218262,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.012546264566481113,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 4.123438835144043,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.01277274452149868,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 4.163538932800293,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.011936571449041367,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 4.101528167724609,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.01149666029959917,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 4.040679931640625,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.01097810547798872,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 4.136455535888672,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.009719183668494225,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 4.041109085083008,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.00986333005130291,
+ "learning_rate": 0.000401595976318565,
+ "loss": 4.124299049377441,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.00912073440849781,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 4.199904441833496,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.009418101981282234,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 4.151755332946777,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.009513386525213718,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 4.254427909851074,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.009743732400238514,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 4.140321731567383,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.00963711366057396,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 4.124331474304199,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.010302593000233173,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 4.132112979888916,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.011983472853899002,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 4.160226821899414,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.012036876752972603,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 4.095509052276611,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.01125854067504406,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 4.117288589477539,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.011722338385879993,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 4.193219184875488,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.012395180761814117,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 4.120162487030029,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.011256304569542408,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 4.083768367767334,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.01025543361902237,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 4.049867630004883,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.010927550494670868,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 4.256014823913574,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.011399165727198124,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 4.091549396514893,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.010450828820466995,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 4.204381942749023,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.011282199062407017,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 4.153038501739502,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.010513713583350182,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 4.108619213104248,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.010266946628689766,
+ "learning_rate": 0.000396803974909638,
+ "loss": 4.169204235076904,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.010166850872337818,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 4.096996307373047,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.01009226031601429,
+ "learning_rate": 0.000396297942393265,
+ "loss": 4.104363441467285,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.010323838330805302,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 4.194367408752441,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.01049391832202673,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 4.116766929626465,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.011563598178327084,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 4.131492614746094,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.011230280622839928,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 4.169009685516357,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.009461907669901848,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 4.137299060821533,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.010689560323953629,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 4.214145660400391,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.011656688526272774,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 4.166624069213867,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.011863510124385357,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 4.131100177764893,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.010448232293128967,
+ "learning_rate": 0.000394017098798633,
+ "loss": 4.101202964782715,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.010062103159725666,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 4.161185264587402,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.01093286368995905,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 4.042693138122559,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.010100377723574638,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 4.060758113861084,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.010339124128222466,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 4.20787239074707,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.010003306902945042,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 4.067782402038574,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.010493419133126736,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 4.125699996948242,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.010171142406761646,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 4.1621246337890625,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.011140113696455956,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 4.237761497497559,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.567854881286621,
+ "eval_runtime": 84.4609,
+ "eval_samples_per_second": 28.913,
+ "eval_steps_per_second": 1.811,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.01077568531036377,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 4.181587219238281,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.01187620684504509,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 4.131726264953613,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.013522771187126637,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 4.122220993041992,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.013684876263141632,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 4.041871070861816,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.013173004612326622,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.970202922821045,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.012073843739926815,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.8631794452667236,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.01288041565567255,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 4.006192207336426,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.013644886203110218,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 4.2370381355285645,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.013753894716501236,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.9589552879333496,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.012465177103877068,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 4.035869598388672,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.011406811885535717,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 4.080760955810547,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.012969305738806725,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 4.074190139770508,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.013275290839374065,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 4.067647933959961,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.01310755591839552,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 4.096287250518799,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.012664602138102055,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.9706339836120605,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.010615247301757336,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 4.117854118347168,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.01068687904626131,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 4.052369117736816,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.011366557329893112,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 4.138422966003418,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.011061202734708786,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 4.126469612121582,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.011635071597993374,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.968297004699707,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.011073353700339794,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 4.075834274291992,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.011658500880002975,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 4.061251640319824,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.012086226604878902,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 4.1972856521606445,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.012222395278513432,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 4.097524642944336,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.011842718347907066,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 4.149069786071777,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.011621825397014618,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 4.0996832847595215,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.010307750664651394,
+ "learning_rate": 0.00038509205478744,
+ "loss": 4.089378356933594,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.009588676504790783,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 4.066476821899414,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.010809775441884995,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 4.19119930267334,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.012743748724460602,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 4.0750932693481445,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.011777926236391068,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 4.044826507568359,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.010044556111097336,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 4.1896867752075195,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.011860032565891743,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 4.092286109924316,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.012056638486683369,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 4.116976737976074,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.011735365726053715,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 4.148249626159668,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.010875556617975235,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 4.195129871368408,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.010493649169802666,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 4.163764476776123,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.010560980066657066,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 4.122279644012451,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.010246366262435913,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 4.1063714027404785,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.00991209875792265,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 4.08073616027832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.009893461130559444,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 4.134050369262695,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.009423932991921902,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 4.193440914154053,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.00842279102653265,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 4.058138847351074,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.00924934446811676,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 4.018709182739258,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.009752786718308926,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 4.012757778167725,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.009239202365279198,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 4.1526408195495605,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.009407109580934048,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 4.116143226623535,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.009414082393050194,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 4.100341796875,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.009516751393675804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 4.085671424865723,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.008972907438874245,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 4.1414794921875,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.009903272613883018,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.919322967529297,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.010267534293234348,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 4.123221397399902,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.011000022292137146,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 4.159793376922607,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.012496626935899258,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 4.062358379364014,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.012963531538844109,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 4.136105537414551,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.01102963276207447,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 4.005084037780762,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.010507521219551563,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 4.038727760314941,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.010605179704725742,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 4.083990097045898,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.010178995318710804,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 4.0194501876831055,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.011055036447942257,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 4.088884353637695,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.00979774259030819,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 4.078244209289551,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.00978800468146801,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 4.1270880699157715,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.009614141657948494,
+ "learning_rate": 0.000375827577564042,
+ "loss": 4.101253509521484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.009357909671962261,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 4.099915027618408,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.009440246038138866,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 4.164741039276123,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.008768280036747456,
+ "learning_rate": 0.000375051971546236,
+ "loss": 4.124988079071045,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.009859531186521053,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 4.220903396606445,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.010455301962792873,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 4.152346611022949,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.009803061373531818,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 4.048665523529053,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.009574026800692081,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 4.0821943283081055,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.009048961102962494,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 4.041666507720947,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.010180778801441193,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 4.200588703155518,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.604552745819092,
+ "eval_runtime": 84.8713,
+ "eval_samples_per_second": 28.773,
+ "eval_steps_per_second": 1.803,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.011329853907227516,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.9900457859039307,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.014984005130827427,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 4.07473611831665,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.016141744330525398,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.9724981784820557,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.01465766504406929,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.9986071586608887,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.015666628256440163,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 4.071915626525879,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.014640172012150288,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 4.036019325256348,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.01469016820192337,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 4.05607271194458,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.014554283581674099,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 4.129990577697754,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.014493918046355247,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 4.062219619750977,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.014379715546965599,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 4.062480926513672,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.013458595611155033,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.9154977798461914,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.012699708342552185,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.9537384510040283,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.011132895946502686,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 4.0615739822387695,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.011430074460804462,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 4.143531799316406,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.01210040133446455,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 4.012790679931641,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.012245144695043564,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 4.106157302856445,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.012887321412563324,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 4.015830993652344,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.012803677469491959,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 4.1782965660095215,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.011368817649781704,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 4.072640419006348,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.010358075611293316,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 4.098837852478027,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.010589832440018654,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 4.117313861846924,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.010321256704628468,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 4.218641757965088,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.011689630337059498,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.9875400066375732,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.010908936150372028,
+ "learning_rate": 0.000367268105959126,
+ "loss": 4.027227401733398,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.010584350675344467,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 4.10093879699707,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.01010285597294569,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 4.074665546417236,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.011812037788331509,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 4.034531593322754,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.011600959114730358,
+ "learning_rate": 0.000366226612810024,
+ "loss": 4.113184928894043,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.010876321233808994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 4.070537567138672,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.009968291968107224,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 4.203442096710205,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.011262387968599796,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 4.0556769371032715,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.01032582949846983,
+ "learning_rate": 0.000365184304613104,
+ "loss": 4.08148193359375,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.010996437631547451,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 4.057895660400391,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.010615769773721695,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 4.124999046325684,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.010909738019108772,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 4.031045913696289,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.010457244701683521,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 4.011176109313965,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.010345135815441608,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 4.030368328094482,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.00980544276535511,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 4.110050678253174,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.009972338564693928,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 4.00167179107666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.010071652941405773,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.9824132919311523,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.010037647560238838,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 4.027332305908203,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.010439334437251091,
+ "learning_rate": 0.000362575056487632,
+ "loss": 4.065634727478027,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.009809018112719059,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 4.128786563873291,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.009842394851148129,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 4.052270889282227,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.00916555617004633,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 4.145816326141357,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.00887344591319561,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 4.095729827880859,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.009776724502444267,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 4.113144397735596,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.009635286405682564,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.942356586456299,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.009097062051296234,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 4.117036819458008,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.009455705061554909,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 4.096042633056641,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.010677946731448174,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.999386787414551,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.009964345954358578,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 4.168429374694824,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.009584939107298851,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 4.039562225341797,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.009133868850767612,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 4.137625694274902,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.009551159106194973,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 4.130338668823242,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.009856447577476501,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 4.096878528594971,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.009551186114549637,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.99261474609375,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.009219125844538212,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 4.010861396789551,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.00918554700911045,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.981205463409424,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.009746214374899864,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 4.120397567749023,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.010356797836720943,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 4.019916534423828,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.010084329172968864,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 4.065004348754883,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.009301368147134781,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 4.122297763824463,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.009626660495996475,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 4.1999053955078125,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.010422289371490479,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.995299816131592,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.011208872310817242,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 4.0599751472473145,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.010681918822228909,
+ "learning_rate": 0.000356031397755195,
+ "loss": 4.077420711517334,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.01082858256995678,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 4.202306270599365,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.010040241293609142,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 4.226383209228516,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.009776259772479534,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 4.0426506996154785,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.009816191159188747,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 4.10113525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.011430559679865837,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.9381566047668457,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.570052623748779,
+ "eval_runtime": 84.6451,
+ "eval_samples_per_second": 28.85,
+ "eval_steps_per_second": 1.808,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.011132825165987015,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 4.0361833572387695,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.012743635103106499,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.924943685531616,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.013857677578926086,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.922771453857422,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.014101691544055939,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 4.15196418762207,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.014825007878243923,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 4.034111976623535,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.01563287526369095,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.931384563446045,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.014393665827810764,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.886596202850342,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.013301689177751541,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 4.0370354652404785,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.012488034553825855,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 4.0232696533203125,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.011063582263886929,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.981332302093506,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.012320222333073616,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.9484620094299316,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.011997769586741924,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 4.041739463806152,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.011553142219781876,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 4.001791954040527,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.011633829213678837,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.917846202850342,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.011593331582844257,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 4.075129508972168,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.011368625797331333,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 4.026906967163086,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.010605502873659134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 4.071677207946777,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.010172054171562195,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.945216655731201,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.010856307111680508,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.971095323562622,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.009842454455792904,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 4.060256481170654,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.010291303507983685,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.9854986667633057,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.009987153112888336,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 4.0489726066589355,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.010083730332553387,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.998929023742676,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.010800480842590332,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 4.100696086883545,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.010760601609945297,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.942884922027588,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.011136551387608051,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 4.020368576049805,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.01087525486946106,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.970954418182373,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.010280475951731205,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 4.104029655456543,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.010815252549946308,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 4.010892391204834,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.010867281816899776,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 4.0223493576049805,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.010291614569723606,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.979717254638672,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.009741781279444695,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 4.018221855163574,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.011015533469617367,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 4.026700973510742,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.010466188192367554,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 4.101867198944092,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.01033122930675745,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 4.045816898345947,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.010766522027552128,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.996644973754883,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.010843119584023952,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.97576642036438,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.012119865044951439,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.882136821746826,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.012413941323757172,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 4.005892753601074,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.011253178119659424,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 4.066131591796875,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.009961821138858795,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 4.015138626098633,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.010008499026298523,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 4.022852897644043,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.010745653882622719,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.9275522232055664,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.010398740880191326,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 4.0531721115112305,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.01038513332605362,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 4.061971664428711,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.009928431361913681,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 4.143259048461914,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.010413208045065403,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 4.061119556427002,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.01139519177377224,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 4.09278678894043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.011986100114881992,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.947401523590088,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.011387983337044716,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 4.068734169006348,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.009954501874744892,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 4.070131778717041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.00955903809517622,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.9322071075439453,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.010283265262842178,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.9960098266601562,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.010511606931686401,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.9909510612487793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.009582840837538242,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 4.079389572143555,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.00974298920482397,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 4.138494491577148,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.010466743260622025,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 4.056201457977295,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.010316438972949982,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 4.099299907684326,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.010122894309461117,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 4.239686965942383,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.009907642379403114,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.9789676666259766,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.01069258525967598,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 4.041545391082764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.01007404737174511,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 4.071598052978516,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.009585035033524036,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.9430413246154785,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.010451397858560085,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 4.13792085647583,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.011326397769153118,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.914581775665283,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.011229630559682846,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.9398770332336426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.009682882577180862,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 4.08770227432251,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.009850278496742249,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 4.091458797454834,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.010133294388651848,
+ "learning_rate": 0.000336518346307424,
+ "loss": 4.060453414916992,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.011278501711785793,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 4.080122947692871,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.011924702674150467,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 4.161231994628906,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.013833330944180489,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.9359490871429443,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.596139907836914,
+ "eval_runtime": 86.0775,
+ "eval_samples_per_second": 28.37,
+ "eval_steps_per_second": 1.777,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.013592035509645939,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.9522242546081543,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.013502624817192554,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 4.0113677978515625,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.013949453830718994,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.9946117401123047,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.014419623650610447,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.9795098304748535,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.01568395458161831,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 4.091269493103027,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.015030908398330212,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 4.062928676605225,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.013131589628756046,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 4.0576863288879395,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.013200934045016766,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.9778010845184326,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.013214852660894394,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 4.0181884765625,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.012748941779136658,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.8231043815612793,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.011799106374382973,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 4.045605659484863,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.011282660067081451,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.9676876068115234,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.0109232347458601,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.9386894702911377,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.011680151335895061,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.960446357727051,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.011029785498976707,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 4.071208477020264,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.010873311199247837,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.910928249359131,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.010651886463165283,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 4.041978359222412,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.010444678366184235,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 4.054442405700684,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.010614353232085705,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 4.05772590637207,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.01047259010374546,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.873579502105713,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.009985635057091713,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.993783712387085,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.010010694153606892,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.984926223754883,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.010369695723056793,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 4.085610389709473,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.010580260306596756,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.949125289916992,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.01043667085468769,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.9963903427124023,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.010741197504103184,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 4.053349018096924,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.010334794409573078,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 4.120090007781982,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.01040970254689455,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.8926737308502197,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.010715796612203121,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.9743237495422363,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.011393639259040356,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.98507022857666,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.010942629538476467,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.898818016052246,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.010325280018150806,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.8614513874053955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.010317712090909481,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.939861297607422,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.010228334926068783,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 4.04915189743042,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.010809719562530518,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 4.05153751373291,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.010143210180103779,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 4.1973876953125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.010687801986932755,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.9684720039367676,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.013338417746126652,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 4.0303544998168945,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.014791577123105526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 4.093402862548828,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.013393090106546879,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 4.098799228668213,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.012639272026717663,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.9800333976745605,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.011467873118817806,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 4.151701927185059,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.011315679177641869,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 4.113883972167969,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.011210434138774872,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.9912962913513184,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.01087957713752985,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.967313766479492,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.011848476715385914,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.978968620300293,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.011160468682646751,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 4.03514289855957,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.009814568795263767,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 4.026996612548828,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.009992859326303005,
+ "learning_rate": 0.000322712903929477,
+ "loss": 4.024201393127441,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.010100461542606354,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.955676555633545,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.009547922760248184,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.937321662902832,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.010318727232515812,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 4.056231498718262,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.009653892368078232,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 4.024428844451904,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.009993361309170723,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.950716018676758,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.01103970780968666,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.945801258087158,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.011700308881700039,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.9194111824035645,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.012860790826380253,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 4.030028343200684,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.011987055651843548,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.90966796875,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.010467334650456905,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.9390382766723633,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.010487129911780357,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.9514942169189453,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.010463234037160873,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 4.016255855560303,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.01121378131210804,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 4.002895355224609,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.010914308950304985,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 4.018136024475098,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.010348659940063953,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 4.03448486328125,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.009568385779857635,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 4.069923400878906,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.009966057725250721,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.914461135864258,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.00994907971471548,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.971266269683838,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.009441893547773361,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 4.057741165161133,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.009497676976025105,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 4.140096664428711,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.010003750212490559,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 4.040005207061768,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.009717513807117939,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 4.030487537384033,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.011040066368877888,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 4.065431594848633,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.603287696838379,
+ "eval_runtime": 85.8724,
+ "eval_samples_per_second": 28.438,
+ "eval_steps_per_second": 1.782,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.011107868514955044,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 4.011427402496338,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.014340977184474468,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.8326802253723145,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.014210023917257786,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 4.009984016418457,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.013904218561947346,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 4.116009712219238,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.014743667095899582,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.8629159927368164,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.013711526058614254,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.9335215091705322,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.013057132251560688,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.908352851867676,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.012818509712815285,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.9947872161865234,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.012549753300845623,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.8811845779418945,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.01136186346411705,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.978353261947632,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.011574970558285713,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.9344143867492676,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.011323983781039715,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.9808664321899414,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.010912686586380005,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 4.017498016357422,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.010812945663928986,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.88407039642334,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.01065861713141203,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.9926493167877197,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.01069044228643179,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 4.0090131759643555,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.010497510433197021,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.935544967651367,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.011448034085333347,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.99393892288208,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.011814731173217297,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.996981620788574,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.012805991806089878,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.990048408508301,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.013853369280695915,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.8463478088378906,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.014118191786110401,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.9070587158203125,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.012672449462115765,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 4.021424293518066,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.011798200197517872,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.965221881866455,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.011141994036734104,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.83060622215271,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.011542421765625477,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.9407637119293213,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.014908739365637302,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 4.01406717300415,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.014702459797263145,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 4.043688774108887,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.011113990098237991,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 4.042995929718018,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.011973917484283447,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.917491912841797,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.014942649751901627,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.9875829219818115,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.014178650453686714,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 4.054706573486328,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.012302055023610592,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.929983615875244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.01186611969023943,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.945169687271118,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.011537456884980202,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 4.049633026123047,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.011318233795464039,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.926973342895508,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.010335283353924751,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.977968692779541,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.010157988406717777,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 4.040463447570801,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.010198986157774925,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.876478433609009,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.011112391017377377,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.9707107543945312,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.011649145744740963,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 4.014248847961426,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.011027307249605656,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.9882264137268066,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.010242706164717674,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.8625729084014893,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.009813128970563412,
+ "learning_rate": 0.000304866093757771,
+ "loss": 4.065174102783203,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.010923790745437145,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 4.07213830947876,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.01187705434858799,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 4.038900375366211,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.011698390357196331,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.950251579284668,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.010257775895297527,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 4.068069934844971,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.010501123033463955,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.9558424949645996,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.011701171286404133,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.968338966369629,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.012152766808867455,
+ "learning_rate": 0.000303,
+ "loss": 4.086882591247559,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.011028476059436798,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.9539551734924316,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.011379408650100231,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.8860912322998047,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.010008374229073524,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 4.095733642578125,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.011070288717746735,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.9810352325439453,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.012155449017882347,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.969482898712158,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.01056651584804058,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 4.042746543884277,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.010865111835300922,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.9409804344177246,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.010306884534657001,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 4.078839302062988,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.00993148609995842,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 4.047484397888184,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.009858231991529465,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.974020004272461,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.009922944940626621,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.9741368293762207,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.010188239626586437,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.920858860015869,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.009717893786728382,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 4.0424394607543945,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.009679177775979042,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 4.004914283752441,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.010174429975450039,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.975625991821289,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.010131667368113995,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.902825355529785,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.009707369841635227,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 4.042960166931152,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.009920211508870125,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.966573476791382,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.009672066196799278,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.93103289604187,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.010291875340044498,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.9984607696533203,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.011761458590626717,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 4.043583869934082,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.599700450897217,
+ "eval_runtime": 87.3222,
+ "eval_samples_per_second": 27.965,
+ "eval_steps_per_second": 1.752,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.011074044741690159,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.9737820625305176,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.01350400224328041,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.9737653732299805,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.015932954847812653,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.939518451690674,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.013929862529039383,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.8696722984313965,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.010929702781140804,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.791276454925537,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.010906493291258812,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.995974063873291,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.011713053099811077,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.8848793506622314,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.011010564863681793,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.9641356468200684,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.010945162735879421,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.9572525024414062,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.0103533286601305,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.9543161392211914,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.011024084873497486,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.909083843231201,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.011396311223506927,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.903420925140381,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.009475707076489925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 4.0093092918396,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.010503377765417099,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.8529200553894043,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.011094511486589909,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.9325509071350098,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.010803001001477242,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.8839521408081055,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.010747581720352173,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 4.001172065734863,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.0103462478145957,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.8773140907287598,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.010612964630126953,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.7979984283447266,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.011453553102910519,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 4.045482635498047,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.011249526403844357,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 4.061059474945068,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.01041093748062849,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.913604259490967,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.010158784687519073,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.876260280609131,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.01079870481044054,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.841350555419922,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.01098064798861742,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.9297823905944824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.01065402664244175,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 4.0244903564453125,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.010416185483336449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.90169095993042,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.010907797142863274,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.9648971557617188,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.01072609331458807,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.910158157348633,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.010549080558121204,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.8769569396972656,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.012598100118339062,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.861464500427246,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.011794711463153362,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.894925117492676,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.011026293970644474,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.969573497772217,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.010959511622786522,
+ "learning_rate": 0.000288343693342466,
+ "loss": 4.111845970153809,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.011551665142178535,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 4.003201961517334,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.012172834947705269,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.964582920074463,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.013538642786443233,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 4.052495002746582,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.014221726916730404,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.9965338706970215,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.012400173582136631,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 4.001407623291016,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.01180094014853239,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.856201410293579,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.011389389634132385,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.9924964904785156,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.0107188755646348,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 4.04386043548584,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.010961013846099377,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.9631590843200684,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.010923122987151146,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.953301191329956,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.01061448734253645,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.9261679649353027,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.010924954898655415,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.9537997245788574,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.01066056452691555,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.9342002868652344,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.009984925389289856,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.988720417022705,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.010581002570688725,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.970776081085205,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.011563191190361977,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.966728925704956,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.010714497417211533,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.9598939418792725,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.011376265436410904,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.8844943046569824,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.011425293982028961,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.8499813079833984,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.01086503267288208,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.8147051334381104,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.010077040642499924,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 4.017036437988281,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.010627911426126957,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.9156417846679688,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.010287647135555744,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.9441888332366943,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.01014758087694645,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 4.044958591461182,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.011006060056388378,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.797041893005371,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.011467166244983673,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.9570345878601074,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.010885256342589855,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.7906641960144043,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.010804297402501106,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.971190929412842,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.011160610243678093,
+ "learning_rate": 0.000280627938758204,
+ "loss": 4.060389518737793,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.009990973398089409,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.917522430419922,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.00998917780816555,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 4.013736248016357,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.011042946018278599,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.799297332763672,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.010925267823040485,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.94362211227417,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.011051100678741932,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 4.001194953918457,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.010502695105969906,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 4.134047508239746,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.010572216473519802,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.9747796058654785,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.010007299482822418,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 4.044950485229492,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.011629229411482811,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 4.084447860717773,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.588645935058594,
+ "eval_runtime": 85.4714,
+ "eval_samples_per_second": 28.571,
+ "eval_steps_per_second": 1.79,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.011689464561641216,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.9075310230255127,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.014014136046171188,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 4.014795303344727,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.011509428732097149,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.9163098335266113,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.01121868658810854,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.9568498134613037,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.011642883531749249,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.9395787715911865,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.011057519353926182,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.8263654708862305,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.010972758755087852,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.9097914695739746,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.010745537467300892,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.854860544204712,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.011182599700987339,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 4.041356563568115,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.012797663919627666,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.830272912979126,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.012043065391480923,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.8452553749084473,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.013106790371239185,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.8310980796813965,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.013427415862679482,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.9251890182495117,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.013122874312102795,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.957672119140625,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.012872692197561264,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.878587245941162,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.011384270153939724,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.854142665863037,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.011137540452182293,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.9605469703674316,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.011310633271932602,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.940114974975586,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.01179711427539587,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.938386917114258,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.011187809519469738,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.944530487060547,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.011170677840709686,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.9430172443389893,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.010550163686275482,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.7957606315612793,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.010384478606283665,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.9056930541992188,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.010651282034814358,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.8139357566833496,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.0107306819409132,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 4.003175735473633,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.011411326937377453,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.919771432876587,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.01133117638528347,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.9188013076782227,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.01031514909118414,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.932736873626709,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.009824352338910103,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 4.015635967254639,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.01049763523042202,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.9969911575317383,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.011549605056643486,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.834160804748535,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.011060566641390324,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.8837857246398926,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.009798712097108364,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.949749231338501,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.010602886788547039,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 4.000707149505615,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.00990439672023058,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.885244131088257,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.009604494087398052,
+ "learning_rate": 0.00026868712586269,
+ "loss": 4.074821472167969,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.009423203766345978,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 4.000557899475098,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.0098728621378541,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.9387454986572266,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.010560811497271061,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 4.009432792663574,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.009980306960642338,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.896604061126709,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.009540977887809277,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.9122257232666016,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.010007701814174652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 4.008612155914307,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.011056117713451385,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 4.038888931274414,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.011715954169631004,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.9493355751037598,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.012441720813512802,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.9336190223693848,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.01239983644336462,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.800154209136963,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.010556857101619244,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.996401309967041,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.010134321637451649,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.9100875854492188,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.010460550896823406,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.892467498779297,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.010920022614300251,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.8093631267547607,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.010078933089971542,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.9534246921539307,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.010934804566204548,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.8959293365478516,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.009791049174964428,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 4.032570838928223,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.009695373475551605,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.872560977935791,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.010239834897220135,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.898049831390381,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.011325928382575512,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 4.000666618347168,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.010393583215773106,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.916602611541748,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.010357106104493141,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 4.027385711669922,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.010646609589457512,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.87898850440979,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.010656338185071945,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.9381659030914307,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.010371637530624866,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.878948211669922,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.010396607220172882,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 4.031810760498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.0101687116548419,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.986933708190918,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.009972655214369297,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.8843746185302734,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.010430166497826576,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.9313480854034424,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.010458354838192463,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.953433036804199,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.009931962937116623,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.991569995880127,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.010947883129119873,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.9206581115722656,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.010655615478754044,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.891333818435669,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.01125908549875021,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.8434605598449707,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.011453676968812943,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.9852113723754883,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.012835046276450157,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.761152744293213,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.577749729156494,
+ "eval_runtime": 86.0183,
+ "eval_samples_per_second": 28.389,
+ "eval_steps_per_second": 1.779,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.011688253842294216,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.9019522666931152,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.013192981481552124,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.897005796432495,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.012870961800217628,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.8835902214050293,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.012850126251578331,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.9463181495666504,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.013198571279644966,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.9062042236328125,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.013023433275520802,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.8452041149139404,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.011843542568385601,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.8098270893096924,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.011327624320983887,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.9676313400268555,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.011951684951782227,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.9325199127197266,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.012988871894776821,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.9741406440734863,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.01474353950470686,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.954935073852539,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.015253514051437378,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.9670064449310303,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.013718944974243641,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.9320693016052246,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.011357603594660759,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.7773828506469727,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.01170849148184061,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.8851189613342285,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.01428207941353321,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.8826663494110107,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.016005778685212135,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.9117560386657715,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.014198106713593006,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.8031065464019775,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.011704663746058941,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.891038417816162,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.010909215547144413,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.8263349533081055,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.012448816560208797,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.9024434089660645,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.013269470073282719,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.814897298812866,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.01163567416369915,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.853396415710449,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.011129403486847878,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.8798186779022217,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.011933285742998123,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.8234798908233643,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.013377312570810318,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.8552844524383545,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.011400080285966396,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.9409127235412598,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.011178918182849884,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.880861520767212,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.013041479513049126,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.8637871742248535,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.012902776710689068,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.9051785469055176,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.01097793783992529,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.8485116958618164,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.01198726985603571,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.833984851837158,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.012412553653120995,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.835758686065674,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.011381368152797222,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.7852823734283447,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.010742254555225372,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.9635236263275146,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.010208575055003166,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.9532880783081055,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.010875599458813667,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.923335075378418,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.010645967908203602,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.9628233909606934,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.009820123203098774,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 4.036235809326172,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.010748740285634995,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.8888001441955566,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.010759779252111912,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.888763427734375,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.010816200636327267,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.9231839179992676,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.010659001767635345,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.751230239868164,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.010139607824385166,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.8911890983581543,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.010190426371991634,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.9361610412597656,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.01053356472402811,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.820432186126709,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.010453339666128159,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.9013843536376953,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.010975971817970276,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.941499710083008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.011470776982605457,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.9472250938415527,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.01132800243794918,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.934760570526123,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.010188699699938297,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.940852642059326,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.011588476598262787,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.881300687789917,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.011445710435509682,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.8878631591796875,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.010066111572086811,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 4.051698684692383,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.011515095829963684,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.937252998352051,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.012769580818712711,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.898301601409912,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.01235460489988327,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.820993661880493,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.010864713229238987,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.741528272628784,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.011177250184118748,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.958587646484375,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.011447126977145672,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.8475422859191895,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.011529373936355114,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.847842216491699,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.010466120205819607,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.8615760803222656,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.010162622667849064,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.910557270050049,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.010626879520714283,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.9372987747192383,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.010526949539780617,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 4.033852577209473,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.010240721516311169,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.9674649238586426,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.010456124320626259,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.978588581085205,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.010770171880722046,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.975640058517456,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.010375156067311764,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.970576763153076,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.009781519882380962,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.9403347969055176,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.010984783992171288,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.817472457885742,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.012089774943888187,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.994081974029541,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.603480815887451,
+ "eval_runtime": 84.8833,
+ "eval_samples_per_second": 28.769,
+ "eval_steps_per_second": 1.802,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.011733257211744785,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.9356606006622314,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.01330010499805212,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.8383421897888184,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.012003310024738312,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.8812572956085205,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.0123556824401021,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.8535850048065186,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.01161467470228672,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.929421901702881,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.012014579959213734,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.7582807540893555,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.01118547935038805,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.9876742362976074,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.011344132013618946,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.864891529083252,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.01170346885919571,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.817432403564453,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.011647871695458889,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.89971923828125,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.011546367779374123,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.90244722366333,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.011550342664122581,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.809117317199707,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.011258913204073906,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.905025005340576,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.011282610706984997,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.779602527618408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.011639866046607494,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.9670777320861816,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.010768581181764603,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.958116054534912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.0109172398224473,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.8190770149230957,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.011898413300514221,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.856595039367676,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.011432542465627193,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.7329049110412598,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.01097177155315876,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.955566167831421,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.011556052602827549,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.804487705230713,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.01179601065814495,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.781385898590088,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.011609538458287716,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.9597253799438477,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.010918320156633854,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.884592056274414,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.01119279209524393,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.835721492767334,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.010532518848776817,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.9814205169677734,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.011080932803452015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.8226406574249268,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.010538287460803986,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 4.029593467712402,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.011465945281088352,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.960726261138916,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.0108618950471282,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.8980398178100586,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.010339999571442604,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.983405113220215,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.010117891244590282,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.9767355918884277,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.010386128909885883,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.9415929317474365,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.010351025499403477,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.794034719467163,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.010884677991271019,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.9224600791931152,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.010773873887956142,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.882521390914917,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.010557166300714016,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.8566958904266357,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.010536021552979946,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 4.0177226066589355,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.010782448574900627,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.9123826026916504,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.012259316630661488,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.9082179069519043,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.012442185543477535,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.935253620147705,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.011048306711018085,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.8191399574279785,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.01034141331911087,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.956024646759033,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.011038210242986679,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.8852219581604004,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.011482541449368,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.8552491664886475,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.010966906324028969,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.9505701065063477,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.010703622363507748,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.8711719512939453,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.010880622081458569,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.874210834503174,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.011435945518314838,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.8634233474731445,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.011190537363290787,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.834467649459839,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.00980424229055643,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.851818084716797,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.010341738350689411,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.9530246257781982,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.009817896410822868,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.9131112098693848,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.01047087088227272,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.817899703979492,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.010247116908431053,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.935760974884033,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.010032808408141136,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.9065394401550293,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.009959318675100803,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.9358553886413574,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.010545285418629646,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.9537429809570312,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.010459063574671745,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.868861198425293,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.009678610600531101,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.9771389961242676,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.010761966928839684,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.923041343688965,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.010677576065063477,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.9786107540130615,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.010676741600036621,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.8509178161621094,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.01141789648681879,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.9142541885375977,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.010593809187412262,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.9438939094543457,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.010112748481333256,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.7702059745788574,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.010748161002993584,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.838205337524414,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.010649033822119236,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.751556396484375,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.010314499028027058,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.9019546508789062,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.010986926965415478,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.820539951324463,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.010041169822216034,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.8246195316314697,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.012162555009126663,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.962362766265869,
+ "step": 2160
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 9.204818756449075e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-2160/training_args.bin b/runs/i5-exp-lm/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-2520/chat_template.jinja b/runs/i5-exp-lm/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-2520/config.json b/runs/i5-exp-lm/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-2520/generation_config.json b/runs/i5-exp-lm/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-2520/model.safetensors b/runs/i5-exp-lm/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b946a657e0f70fecd719bbe12e56bdb0c9f9251f
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:66325da5fa9caecc132e22f4f4bf6de12e6cda83cabfb48bd8bbbdf1aab47d14
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-2520/optimizer.pt b/runs/i5-exp-lm/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4df567d1e8285f6e926cfdd742c365f3f4d4f3b4
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cf798946dcfccf5c9f4621887564432610264f71d1039edb0bee5a4d37ce77da
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-2520/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2b0a153f1409d7d28fcfd4ee09fd7b8a083da6f2
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3273a13b4c2620fc4527c59ce9f116068aad52938f9cf3c748789b479c9a92ea
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-2520/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4d069b19af0b4ed57db4e9663ca0ab36814893d4
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9b4ee680963d1b27f97f26659aac7e60c43bcc59987dca1cab8b845331e7ab67
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-2520/scheduler.pt b/runs/i5-exp-lm/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b53f13f877641b522f2c435934f587fdad6161cc
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f776ea81adcefd29eff4d7371e55373e8890bd750697e1c8b781d131e0a39a6
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-2520/tokenizer.json b/runs/i5-exp-lm/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-2520/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-2520/trainer_state.json b/runs/i5-exp-lm/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..afc805efdfbf814c1d8a4f9eada4533aa0843d13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/trainer_state.json
@@ -0,0 +1,17946 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 35.0,
+ "eval_steps": 500,
+ "global_step": 2520,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.551431655883789,
+ "eval_runtime": 85.7406,
+ "eval_samples_per_second": 28.481,
+ "eval_steps_per_second": 1.784,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.009876579977571964,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 4.164706230163574,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.012572702020406723,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 4.014013767242432,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.01369260810315609,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 4.120209693908691,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.014534002169966698,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 4.229783058166504,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.015219368040561676,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 4.105164527893066,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.015543874353170395,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 4.066263198852539,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.0142653938382864,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 4.1460795402526855,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.014713063836097717,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 4.139624118804932,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.014000465162098408,
+ "learning_rate": 0.000407857329622967,
+ "loss": 4.002811908721924,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.013888941146433353,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 4.17318058013916,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.014635670930147171,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 4.152536392211914,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.015171809121966362,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 4.1005167961120605,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.01345653086900711,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 4.135690689086914,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.013164847157895565,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 4.149524211883545,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.013102286495268345,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 4.193521499633789,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.011267323978245258,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 4.1657867431640625,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.011742684058845043,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 4.1137213706970215,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.01192871481180191,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 4.260440826416016,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.013026650995016098,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 4.185743808746338,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.013810441829264164,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 4.054473400115967,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.011503677815198898,
+ "learning_rate": 0.000404858275823277,
+ "loss": 4.185676574707031,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.01065174862742424,
+ "learning_rate": 0.000404607816444578,
+ "loss": 4.013198375701904,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.011239566840231419,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 4.118226528167725,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.012186541222035885,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 4.185783863067627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.01248143333941698,
+ "learning_rate": 0.000403855947934478,
+ "loss": 4.125214099884033,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.012454871088266373,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 4.112842559814453,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.012563669122755527,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 4.154864311218262,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.012546264566481113,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 4.123438835144043,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.01277274452149868,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 4.163538932800293,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.011936571449041367,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 4.101528167724609,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.01149666029959917,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 4.040679931640625,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.01097810547798872,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 4.136455535888672,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.009719183668494225,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 4.041109085083008,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.00986333005130291,
+ "learning_rate": 0.000401595976318565,
+ "loss": 4.124299049377441,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.00912073440849781,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 4.199904441833496,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.009418101981282234,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 4.151755332946777,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.009513386525213718,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 4.254427909851074,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.009743732400238514,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 4.140321731567383,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.00963711366057396,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 4.124331474304199,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.010302593000233173,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 4.132112979888916,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.011983472853899002,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 4.160226821899414,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.012036876752972603,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 4.095509052276611,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.01125854067504406,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 4.117288589477539,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.011722338385879993,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 4.193219184875488,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.012395180761814117,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 4.120162487030029,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.011256304569542408,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 4.083768367767334,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.01025543361902237,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 4.049867630004883,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.010927550494670868,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 4.256014823913574,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.011399165727198124,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 4.091549396514893,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.010450828820466995,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 4.204381942749023,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.011282199062407017,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 4.153038501739502,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.010513713583350182,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 4.108619213104248,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.010266946628689766,
+ "learning_rate": 0.000396803974909638,
+ "loss": 4.169204235076904,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.010166850872337818,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 4.096996307373047,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.01009226031601429,
+ "learning_rate": 0.000396297942393265,
+ "loss": 4.104363441467285,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.010323838330805302,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 4.194367408752441,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.01049391832202673,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 4.116766929626465,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.011563598178327084,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 4.131492614746094,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.011230280622839928,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 4.169009685516357,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.009461907669901848,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 4.137299060821533,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.010689560323953629,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 4.214145660400391,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.011656688526272774,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 4.166624069213867,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.011863510124385357,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 4.131100177764893,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.010448232293128967,
+ "learning_rate": 0.000394017098798633,
+ "loss": 4.101202964782715,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.010062103159725666,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 4.161185264587402,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.01093286368995905,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 4.042693138122559,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.010100377723574638,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 4.060758113861084,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.010339124128222466,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 4.20787239074707,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.010003306902945042,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 4.067782402038574,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.010493419133126736,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 4.125699996948242,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.010171142406761646,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 4.1621246337890625,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.011140113696455956,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 4.237761497497559,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.567854881286621,
+ "eval_runtime": 84.4609,
+ "eval_samples_per_second": 28.913,
+ "eval_steps_per_second": 1.811,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.01077568531036377,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 4.181587219238281,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.01187620684504509,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 4.131726264953613,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.013522771187126637,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 4.122220993041992,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.013684876263141632,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 4.041871070861816,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.013173004612326622,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.970202922821045,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.012073843739926815,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.8631794452667236,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.01288041565567255,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 4.006192207336426,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.013644886203110218,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 4.2370381355285645,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.013753894716501236,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.9589552879333496,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.012465177103877068,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 4.035869598388672,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.011406811885535717,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 4.080760955810547,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.012969305738806725,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 4.074190139770508,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.013275290839374065,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 4.067647933959961,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.01310755591839552,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 4.096287250518799,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.012664602138102055,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.9706339836120605,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.010615247301757336,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 4.117854118347168,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.01068687904626131,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 4.052369117736816,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.011366557329893112,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 4.138422966003418,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.011061202734708786,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 4.126469612121582,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.011635071597993374,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.968297004699707,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.011073353700339794,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 4.075834274291992,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.011658500880002975,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 4.061251640319824,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.012086226604878902,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 4.1972856521606445,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.012222395278513432,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 4.097524642944336,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.011842718347907066,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 4.149069786071777,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.011621825397014618,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 4.0996832847595215,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.010307750664651394,
+ "learning_rate": 0.00038509205478744,
+ "loss": 4.089378356933594,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.009588676504790783,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 4.066476821899414,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.010809775441884995,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 4.19119930267334,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.012743748724460602,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 4.0750932693481445,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.011777926236391068,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 4.044826507568359,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.010044556111097336,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 4.1896867752075195,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.011860032565891743,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 4.092286109924316,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.012056638486683369,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 4.116976737976074,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.011735365726053715,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 4.148249626159668,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.010875556617975235,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 4.195129871368408,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.010493649169802666,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 4.163764476776123,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.010560980066657066,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 4.122279644012451,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.010246366262435913,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 4.1063714027404785,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.00991209875792265,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 4.08073616027832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.009893461130559444,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 4.134050369262695,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.009423932991921902,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 4.193440914154053,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.00842279102653265,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 4.058138847351074,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.00924934446811676,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 4.018709182739258,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.009752786718308926,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 4.012757778167725,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.009239202365279198,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 4.1526408195495605,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.009407109580934048,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 4.116143226623535,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.009414082393050194,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 4.100341796875,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.009516751393675804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 4.085671424865723,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.008972907438874245,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 4.1414794921875,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.009903272613883018,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.919322967529297,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.010267534293234348,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 4.123221397399902,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.011000022292137146,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 4.159793376922607,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.012496626935899258,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 4.062358379364014,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.012963531538844109,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 4.136105537414551,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.01102963276207447,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 4.005084037780762,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.010507521219551563,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 4.038727760314941,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.010605179704725742,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 4.083990097045898,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.010178995318710804,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 4.0194501876831055,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.011055036447942257,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 4.088884353637695,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.00979774259030819,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 4.078244209289551,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.00978800468146801,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 4.1270880699157715,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.009614141657948494,
+ "learning_rate": 0.000375827577564042,
+ "loss": 4.101253509521484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.009357909671962261,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 4.099915027618408,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.009440246038138866,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 4.164741039276123,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.008768280036747456,
+ "learning_rate": 0.000375051971546236,
+ "loss": 4.124988079071045,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.009859531186521053,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 4.220903396606445,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.010455301962792873,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 4.152346611022949,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.009803061373531818,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 4.048665523529053,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.009574026800692081,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 4.0821943283081055,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.009048961102962494,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 4.041666507720947,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.010180778801441193,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 4.200588703155518,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.604552745819092,
+ "eval_runtime": 84.8713,
+ "eval_samples_per_second": 28.773,
+ "eval_steps_per_second": 1.803,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.011329853907227516,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.9900457859039307,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.014984005130827427,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 4.07473611831665,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.016141744330525398,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.9724981784820557,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.01465766504406929,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.9986071586608887,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.015666628256440163,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 4.071915626525879,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.014640172012150288,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 4.036019325256348,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.01469016820192337,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 4.05607271194458,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.014554283581674099,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 4.129990577697754,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.014493918046355247,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 4.062219619750977,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.014379715546965599,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 4.062480926513672,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.013458595611155033,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.9154977798461914,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.012699708342552185,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.9537384510040283,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.011132895946502686,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 4.0615739822387695,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.011430074460804462,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 4.143531799316406,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.01210040133446455,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 4.012790679931641,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.012245144695043564,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 4.106157302856445,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.012887321412563324,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 4.015830993652344,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.012803677469491959,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 4.1782965660095215,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.011368817649781704,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 4.072640419006348,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.010358075611293316,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 4.098837852478027,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.010589832440018654,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 4.117313861846924,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.010321256704628468,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 4.218641757965088,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.011689630337059498,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.9875400066375732,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.010908936150372028,
+ "learning_rate": 0.000367268105959126,
+ "loss": 4.027227401733398,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.010584350675344467,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 4.10093879699707,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.01010285597294569,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 4.074665546417236,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.011812037788331509,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 4.034531593322754,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.011600959114730358,
+ "learning_rate": 0.000366226612810024,
+ "loss": 4.113184928894043,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.010876321233808994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 4.070537567138672,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.009968291968107224,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 4.203442096710205,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.011262387968599796,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 4.0556769371032715,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.01032582949846983,
+ "learning_rate": 0.000365184304613104,
+ "loss": 4.08148193359375,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.010996437631547451,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 4.057895660400391,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.010615769773721695,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 4.124999046325684,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.010909738019108772,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 4.031045913696289,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.010457244701683521,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 4.011176109313965,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.010345135815441608,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 4.030368328094482,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.00980544276535511,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 4.110050678253174,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.009972338564693928,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 4.00167179107666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.010071652941405773,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.9824132919311523,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.010037647560238838,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 4.027332305908203,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.010439334437251091,
+ "learning_rate": 0.000362575056487632,
+ "loss": 4.065634727478027,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.009809018112719059,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 4.128786563873291,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.009842394851148129,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 4.052270889282227,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.00916555617004633,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 4.145816326141357,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.00887344591319561,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 4.095729827880859,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.009776724502444267,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 4.113144397735596,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.009635286405682564,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.942356586456299,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.009097062051296234,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 4.117036819458008,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.009455705061554909,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 4.096042633056641,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.010677946731448174,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.999386787414551,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.009964345954358578,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 4.168429374694824,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.009584939107298851,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 4.039562225341797,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.009133868850767612,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 4.137625694274902,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.009551159106194973,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 4.130338668823242,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.009856447577476501,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 4.096878528594971,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.009551186114549637,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.99261474609375,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.009219125844538212,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 4.010861396789551,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.00918554700911045,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.981205463409424,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.009746214374899864,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 4.120397567749023,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.010356797836720943,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 4.019916534423828,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.010084329172968864,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 4.065004348754883,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.009301368147134781,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 4.122297763824463,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.009626660495996475,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 4.1999053955078125,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.010422289371490479,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.995299816131592,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.011208872310817242,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 4.0599751472473145,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.010681918822228909,
+ "learning_rate": 0.000356031397755195,
+ "loss": 4.077420711517334,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.01082858256995678,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 4.202306270599365,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.010040241293609142,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 4.226383209228516,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.009776259772479534,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 4.0426506996154785,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.009816191159188747,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 4.10113525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.011430559679865837,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.9381566047668457,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.570052623748779,
+ "eval_runtime": 84.6451,
+ "eval_samples_per_second": 28.85,
+ "eval_steps_per_second": 1.808,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.011132825165987015,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 4.0361833572387695,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.012743635103106499,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.924943685531616,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.013857677578926086,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.922771453857422,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.014101691544055939,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 4.15196418762207,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.014825007878243923,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 4.034111976623535,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.01563287526369095,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.931384563446045,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.014393665827810764,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.886596202850342,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.013301689177751541,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 4.0370354652404785,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.012488034553825855,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 4.0232696533203125,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.011063582263886929,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.981332302093506,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.012320222333073616,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.9484620094299316,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.011997769586741924,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 4.041739463806152,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.011553142219781876,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 4.001791954040527,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.011633829213678837,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.917846202850342,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.011593331582844257,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 4.075129508972168,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.011368625797331333,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 4.026906967163086,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.010605502873659134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 4.071677207946777,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.010172054171562195,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.945216655731201,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.010856307111680508,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.971095323562622,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.009842454455792904,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 4.060256481170654,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.010291303507983685,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.9854986667633057,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.009987153112888336,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 4.0489726066589355,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.010083730332553387,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.998929023742676,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.010800480842590332,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 4.100696086883545,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.010760601609945297,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.942884922027588,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.011136551387608051,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 4.020368576049805,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.01087525486946106,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.970954418182373,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.010280475951731205,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 4.104029655456543,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.010815252549946308,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 4.010892391204834,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.010867281816899776,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 4.0223493576049805,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.010291614569723606,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.979717254638672,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.009741781279444695,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 4.018221855163574,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.011015533469617367,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 4.026700973510742,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.010466188192367554,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 4.101867198944092,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.01033122930675745,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 4.045816898345947,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.010766522027552128,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.996644973754883,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.010843119584023952,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.97576642036438,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.012119865044951439,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.882136821746826,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.012413941323757172,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 4.005892753601074,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.011253178119659424,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 4.066131591796875,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.009961821138858795,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 4.015138626098633,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.010008499026298523,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 4.022852897644043,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.010745653882622719,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.9275522232055664,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.010398740880191326,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 4.0531721115112305,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.01038513332605362,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 4.061971664428711,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.009928431361913681,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 4.143259048461914,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.010413208045065403,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 4.061119556427002,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.01139519177377224,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 4.09278678894043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.011986100114881992,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.947401523590088,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.011387983337044716,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 4.068734169006348,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.009954501874744892,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 4.070131778717041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.00955903809517622,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.9322071075439453,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.010283265262842178,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.9960098266601562,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.010511606931686401,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.9909510612487793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.009582840837538242,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 4.079389572143555,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.00974298920482397,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 4.138494491577148,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.010466743260622025,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 4.056201457977295,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.010316438972949982,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 4.099299907684326,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.010122894309461117,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 4.239686965942383,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.009907642379403114,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.9789676666259766,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.01069258525967598,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 4.041545391082764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.01007404737174511,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 4.071598052978516,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.009585035033524036,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.9430413246154785,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.010451397858560085,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 4.13792085647583,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.011326397769153118,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.914581775665283,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.011229630559682846,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.9398770332336426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.009682882577180862,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 4.08770227432251,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.009850278496742249,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 4.091458797454834,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.010133294388651848,
+ "learning_rate": 0.000336518346307424,
+ "loss": 4.060453414916992,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.011278501711785793,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 4.080122947692871,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.011924702674150467,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 4.161231994628906,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.013833330944180489,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.9359490871429443,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.596139907836914,
+ "eval_runtime": 86.0775,
+ "eval_samples_per_second": 28.37,
+ "eval_steps_per_second": 1.777,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.013592035509645939,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.9522242546081543,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.013502624817192554,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 4.0113677978515625,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.013949453830718994,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.9946117401123047,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.014419623650610447,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.9795098304748535,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.01568395458161831,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 4.091269493103027,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.015030908398330212,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 4.062928676605225,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.013131589628756046,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 4.0576863288879395,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.013200934045016766,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.9778010845184326,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.013214852660894394,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 4.0181884765625,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.012748941779136658,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.8231043815612793,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.011799106374382973,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 4.045605659484863,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.011282660067081451,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.9676876068115234,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.0109232347458601,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.9386894702911377,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.011680151335895061,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.960446357727051,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.011029785498976707,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 4.071208477020264,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.010873311199247837,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.910928249359131,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.010651886463165283,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 4.041978359222412,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.010444678366184235,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 4.054442405700684,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.010614353232085705,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 4.05772590637207,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.01047259010374546,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.873579502105713,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.009985635057091713,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.993783712387085,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.010010694153606892,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.984926223754883,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.010369695723056793,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 4.085610389709473,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.010580260306596756,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.949125289916992,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.01043667085468769,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.9963903427124023,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.010741197504103184,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 4.053349018096924,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.010334794409573078,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 4.120090007781982,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.01040970254689455,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.8926737308502197,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.010715796612203121,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.9743237495422363,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.011393639259040356,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.98507022857666,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.010942629538476467,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.898818016052246,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.010325280018150806,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.8614513874053955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.010317712090909481,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.939861297607422,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.010228334926068783,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 4.04915189743042,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.010809719562530518,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 4.05153751373291,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.010143210180103779,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 4.1973876953125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.010687801986932755,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.9684720039367676,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.013338417746126652,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 4.0303544998168945,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.014791577123105526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 4.093402862548828,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.013393090106546879,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 4.098799228668213,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.012639272026717663,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.9800333976745605,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.011467873118817806,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 4.151701927185059,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.011315679177641869,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 4.113883972167969,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.011210434138774872,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.9912962913513184,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.01087957713752985,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.967313766479492,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.011848476715385914,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.978968620300293,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.011160468682646751,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 4.03514289855957,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.009814568795263767,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 4.026996612548828,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.009992859326303005,
+ "learning_rate": 0.000322712903929477,
+ "loss": 4.024201393127441,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.010100461542606354,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.955676555633545,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.009547922760248184,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.937321662902832,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.010318727232515812,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 4.056231498718262,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.009653892368078232,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 4.024428844451904,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.009993361309170723,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.950716018676758,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.01103970780968666,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.945801258087158,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.011700308881700039,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.9194111824035645,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.012860790826380253,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 4.030028343200684,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.011987055651843548,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.90966796875,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.010467334650456905,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.9390382766723633,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.010487129911780357,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.9514942169189453,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.010463234037160873,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 4.016255855560303,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.01121378131210804,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 4.002895355224609,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.010914308950304985,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 4.018136024475098,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.010348659940063953,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 4.03448486328125,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.009568385779857635,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 4.069923400878906,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.009966057725250721,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.914461135864258,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.00994907971471548,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.971266269683838,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.009441893547773361,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 4.057741165161133,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.009497676976025105,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 4.140096664428711,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.010003750212490559,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 4.040005207061768,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.009717513807117939,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 4.030487537384033,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.011040066368877888,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 4.065431594848633,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.603287696838379,
+ "eval_runtime": 85.8724,
+ "eval_samples_per_second": 28.438,
+ "eval_steps_per_second": 1.782,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.011107868514955044,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 4.011427402496338,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.014340977184474468,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.8326802253723145,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.014210023917257786,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 4.009984016418457,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.013904218561947346,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 4.116009712219238,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.014743667095899582,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.8629159927368164,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.013711526058614254,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.9335215091705322,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.013057132251560688,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.908352851867676,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.012818509712815285,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.9947872161865234,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.012549753300845623,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.8811845779418945,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.01136186346411705,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.978353261947632,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.011574970558285713,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.9344143867492676,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.011323983781039715,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.9808664321899414,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.010912686586380005,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 4.017498016357422,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.010812945663928986,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.88407039642334,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.01065861713141203,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.9926493167877197,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.01069044228643179,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 4.0090131759643555,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.010497510433197021,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.935544967651367,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.011448034085333347,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.99393892288208,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.011814731173217297,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.996981620788574,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.012805991806089878,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.990048408508301,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.013853369280695915,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.8463478088378906,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.014118191786110401,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.9070587158203125,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.012672449462115765,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 4.021424293518066,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.011798200197517872,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.965221881866455,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.011141994036734104,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.83060622215271,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.011542421765625477,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.9407637119293213,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.014908739365637302,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 4.01406717300415,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.014702459797263145,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 4.043688774108887,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.011113990098237991,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 4.042995929718018,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.011973917484283447,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.917491912841797,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.014942649751901627,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.9875829219818115,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.014178650453686714,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 4.054706573486328,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.012302055023610592,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.929983615875244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.01186611969023943,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.945169687271118,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.011537456884980202,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 4.049633026123047,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.011318233795464039,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.926973342895508,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.010335283353924751,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.977968692779541,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.010157988406717777,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 4.040463447570801,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.010198986157774925,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.876478433609009,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.011112391017377377,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.9707107543945312,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.011649145744740963,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 4.014248847961426,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.011027307249605656,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.9882264137268066,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.010242706164717674,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.8625729084014893,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.009813128970563412,
+ "learning_rate": 0.000304866093757771,
+ "loss": 4.065174102783203,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.010923790745437145,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 4.07213830947876,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.01187705434858799,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 4.038900375366211,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.011698390357196331,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.950251579284668,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.010257775895297527,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 4.068069934844971,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.010501123033463955,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.9558424949645996,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.011701171286404133,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.968338966369629,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.012152766808867455,
+ "learning_rate": 0.000303,
+ "loss": 4.086882591247559,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.011028476059436798,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.9539551734924316,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.011379408650100231,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.8860912322998047,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.010008374229073524,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 4.095733642578125,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.011070288717746735,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.9810352325439453,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.012155449017882347,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.969482898712158,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.01056651584804058,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 4.042746543884277,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.010865111835300922,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.9409804344177246,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.010306884534657001,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 4.078839302062988,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.00993148609995842,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 4.047484397888184,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.009858231991529465,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.974020004272461,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.009922944940626621,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.9741368293762207,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.010188239626586437,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.920858860015869,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.009717893786728382,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 4.0424394607543945,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.009679177775979042,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 4.004914283752441,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.010174429975450039,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.975625991821289,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.010131667368113995,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.902825355529785,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.009707369841635227,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 4.042960166931152,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.009920211508870125,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.966573476791382,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.009672066196799278,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.93103289604187,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.010291875340044498,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.9984607696533203,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.011761458590626717,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 4.043583869934082,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.599700450897217,
+ "eval_runtime": 87.3222,
+ "eval_samples_per_second": 27.965,
+ "eval_steps_per_second": 1.752,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.011074044741690159,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.9737820625305176,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.01350400224328041,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.9737653732299805,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.015932954847812653,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.939518451690674,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.013929862529039383,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.8696722984313965,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.010929702781140804,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.791276454925537,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.010906493291258812,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.995974063873291,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.011713053099811077,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.8848793506622314,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.011010564863681793,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.9641356468200684,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.010945162735879421,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.9572525024414062,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.0103533286601305,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.9543161392211914,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.011024084873497486,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.909083843231201,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.011396311223506927,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.903420925140381,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.009475707076489925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 4.0093092918396,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.010503377765417099,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.8529200553894043,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.011094511486589909,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.9325509071350098,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.010803001001477242,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.8839521408081055,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.010747581720352173,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 4.001172065734863,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.0103462478145957,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.8773140907287598,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.010612964630126953,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.7979984283447266,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.011453553102910519,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 4.045482635498047,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.011249526403844357,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 4.061059474945068,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.01041093748062849,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.913604259490967,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.010158784687519073,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.876260280609131,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.01079870481044054,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.841350555419922,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.01098064798861742,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.9297823905944824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.01065402664244175,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 4.0244903564453125,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.010416185483336449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.90169095993042,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.010907797142863274,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.9648971557617188,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.01072609331458807,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.910158157348633,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.010549080558121204,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.8769569396972656,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.012598100118339062,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.861464500427246,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.011794711463153362,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.894925117492676,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.011026293970644474,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.969573497772217,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.010959511622786522,
+ "learning_rate": 0.000288343693342466,
+ "loss": 4.111845970153809,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.011551665142178535,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 4.003201961517334,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.012172834947705269,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.964582920074463,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.013538642786443233,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 4.052495002746582,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.014221726916730404,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.9965338706970215,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.012400173582136631,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 4.001407623291016,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.01180094014853239,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.856201410293579,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.011389389634132385,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.9924964904785156,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.0107188755646348,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 4.04386043548584,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.010961013846099377,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.9631590843200684,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.010923122987151146,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.953301191329956,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.01061448734253645,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.9261679649353027,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.010924954898655415,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.9537997245788574,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.01066056452691555,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.9342002868652344,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.009984925389289856,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.988720417022705,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.010581002570688725,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.970776081085205,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.011563191190361977,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.966728925704956,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.010714497417211533,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.9598939418792725,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.011376265436410904,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.8844943046569824,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.011425293982028961,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.8499813079833984,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.01086503267288208,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.8147051334381104,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.010077040642499924,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 4.017036437988281,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.010627911426126957,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.9156417846679688,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.010287647135555744,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.9441888332366943,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.01014758087694645,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 4.044958591461182,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.011006060056388378,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.797041893005371,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.011467166244983673,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.9570345878601074,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.010885256342589855,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.7906641960144043,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.010804297402501106,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.971190929412842,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.011160610243678093,
+ "learning_rate": 0.000280627938758204,
+ "loss": 4.060389518737793,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.009990973398089409,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.917522430419922,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.00998917780816555,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 4.013736248016357,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.011042946018278599,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.799297332763672,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.010925267823040485,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.94362211227417,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.011051100678741932,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 4.001194953918457,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.010502695105969906,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 4.134047508239746,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.010572216473519802,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.9747796058654785,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.010007299482822418,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 4.044950485229492,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.011629229411482811,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 4.084447860717773,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.588645935058594,
+ "eval_runtime": 85.4714,
+ "eval_samples_per_second": 28.571,
+ "eval_steps_per_second": 1.79,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.011689464561641216,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.9075310230255127,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.014014136046171188,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 4.014795303344727,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.011509428732097149,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.9163098335266113,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.01121868658810854,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.9568498134613037,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.011642883531749249,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.9395787715911865,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.011057519353926182,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.8263654708862305,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.010972758755087852,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.9097914695739746,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.010745537467300892,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.854860544204712,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.011182599700987339,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 4.041356563568115,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.012797663919627666,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.830272912979126,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.012043065391480923,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.8452553749084473,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.013106790371239185,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.8310980796813965,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.013427415862679482,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.9251890182495117,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.013122874312102795,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.957672119140625,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.012872692197561264,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.878587245941162,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.011384270153939724,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.854142665863037,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.011137540452182293,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.9605469703674316,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.011310633271932602,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.940114974975586,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.01179711427539587,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.938386917114258,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.011187809519469738,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.944530487060547,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.011170677840709686,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.9430172443389893,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.010550163686275482,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.7957606315612793,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.010384478606283665,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.9056930541992188,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.010651282034814358,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.8139357566833496,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.0107306819409132,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 4.003175735473633,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.011411326937377453,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.919771432876587,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.01133117638528347,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.9188013076782227,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.01031514909118414,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.932736873626709,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.009824352338910103,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 4.015635967254639,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.01049763523042202,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.9969911575317383,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.011549605056643486,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.834160804748535,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.011060566641390324,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.8837857246398926,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.009798712097108364,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.949749231338501,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.010602886788547039,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 4.000707149505615,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.00990439672023058,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.885244131088257,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.009604494087398052,
+ "learning_rate": 0.00026868712586269,
+ "loss": 4.074821472167969,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.009423203766345978,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 4.000557899475098,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.0098728621378541,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.9387454986572266,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.010560811497271061,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 4.009432792663574,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.009980306960642338,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.896604061126709,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.009540977887809277,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.9122257232666016,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.010007701814174652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 4.008612155914307,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.011056117713451385,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 4.038888931274414,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.011715954169631004,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.9493355751037598,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.012441720813512802,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.9336190223693848,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.01239983644336462,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.800154209136963,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.010556857101619244,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.996401309967041,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.010134321637451649,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.9100875854492188,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.010460550896823406,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.892467498779297,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.010920022614300251,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.8093631267547607,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.010078933089971542,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.9534246921539307,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.010934804566204548,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.8959293365478516,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.009791049174964428,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 4.032570838928223,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.009695373475551605,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.872560977935791,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.010239834897220135,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.898049831390381,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.011325928382575512,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 4.000666618347168,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.010393583215773106,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.916602611541748,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.010357106104493141,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 4.027385711669922,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.010646609589457512,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.87898850440979,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.010656338185071945,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.9381659030914307,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.010371637530624866,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.878948211669922,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.010396607220172882,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 4.031810760498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.0101687116548419,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.986933708190918,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.009972655214369297,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.8843746185302734,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.010430166497826576,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.9313480854034424,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.010458354838192463,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.953433036804199,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.009931962937116623,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.991569995880127,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.010947883129119873,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.9206581115722656,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.010655615478754044,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.891333818435669,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.01125908549875021,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.8434605598449707,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.011453676968812943,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.9852113723754883,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.012835046276450157,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.761152744293213,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.577749729156494,
+ "eval_runtime": 86.0183,
+ "eval_samples_per_second": 28.389,
+ "eval_steps_per_second": 1.779,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.011688253842294216,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.9019522666931152,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.013192981481552124,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.897005796432495,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.012870961800217628,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.8835902214050293,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.012850126251578331,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.9463181495666504,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.013198571279644966,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.9062042236328125,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.013023433275520802,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.8452041149139404,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.011843542568385601,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.8098270893096924,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.011327624320983887,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.9676313400268555,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.011951684951782227,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.9325199127197266,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.012988871894776821,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.9741406440734863,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.01474353950470686,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.954935073852539,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.015253514051437378,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.9670064449310303,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.013718944974243641,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.9320693016052246,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.011357603594660759,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.7773828506469727,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.01170849148184061,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.8851189613342285,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.01428207941353321,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.8826663494110107,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.016005778685212135,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.9117560386657715,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.014198106713593006,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.8031065464019775,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.011704663746058941,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.891038417816162,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.010909215547144413,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.8263349533081055,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.012448816560208797,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.9024434089660645,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.013269470073282719,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.814897298812866,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.01163567416369915,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.853396415710449,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.011129403486847878,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.8798186779022217,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.011933285742998123,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.8234798908233643,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.013377312570810318,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.8552844524383545,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.011400080285966396,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.9409127235412598,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.011178918182849884,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.880861520767212,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.013041479513049126,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.8637871742248535,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.012902776710689068,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.9051785469055176,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.01097793783992529,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.8485116958618164,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.01198726985603571,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.833984851837158,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.012412553653120995,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.835758686065674,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.011381368152797222,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.7852823734283447,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.010742254555225372,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.9635236263275146,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.010208575055003166,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.9532880783081055,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.010875599458813667,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.923335075378418,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.010645967908203602,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.9628233909606934,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.009820123203098774,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 4.036235809326172,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.010748740285634995,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.8888001441955566,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.010759779252111912,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.888763427734375,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.010816200636327267,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.9231839179992676,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.010659001767635345,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.751230239868164,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.010139607824385166,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.8911890983581543,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.010190426371991634,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.9361610412597656,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.01053356472402811,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.820432186126709,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.010453339666128159,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.9013843536376953,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.010975971817970276,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.941499710083008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.011470776982605457,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.9472250938415527,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.01132800243794918,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.934760570526123,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.010188699699938297,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.940852642059326,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.011588476598262787,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.881300687789917,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.011445710435509682,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.8878631591796875,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.010066111572086811,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 4.051698684692383,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.011515095829963684,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.937252998352051,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.012769580818712711,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.898301601409912,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.01235460489988327,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.820993661880493,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.010864713229238987,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.741528272628784,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.011177250184118748,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.958587646484375,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.011447126977145672,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.8475422859191895,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.011529373936355114,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.847842216491699,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.010466120205819607,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.8615760803222656,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.010162622667849064,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.910557270050049,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.010626879520714283,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.9372987747192383,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.010526949539780617,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 4.033852577209473,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.010240721516311169,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.9674649238586426,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.010456124320626259,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.978588581085205,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.010770171880722046,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.975640058517456,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.010375156067311764,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.970576763153076,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.009781519882380962,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.9403347969055176,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.010984783992171288,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.817472457885742,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.012089774943888187,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.994081974029541,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.603480815887451,
+ "eval_runtime": 84.8833,
+ "eval_samples_per_second": 28.769,
+ "eval_steps_per_second": 1.802,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.011733257211744785,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.9356606006622314,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.01330010499805212,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.8383421897888184,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.012003310024738312,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.8812572956085205,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.0123556824401021,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.8535850048065186,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.01161467470228672,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.929421901702881,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.012014579959213734,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.7582807540893555,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.01118547935038805,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.9876742362976074,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.011344132013618946,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.864891529083252,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.01170346885919571,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.817432403564453,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.011647871695458889,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.89971923828125,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.011546367779374123,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.90244722366333,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.011550342664122581,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.809117317199707,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.011258913204073906,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.905025005340576,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.011282610706984997,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.779602527618408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.011639866046607494,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.9670777320861816,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.010768581181764603,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.958116054534912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.0109172398224473,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.8190770149230957,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.011898413300514221,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.856595039367676,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.011432542465627193,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.7329049110412598,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.01097177155315876,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.955566167831421,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.011556052602827549,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.804487705230713,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.01179601065814495,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.781385898590088,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.011609538458287716,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.9597253799438477,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.010918320156633854,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.884592056274414,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.01119279209524393,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.835721492767334,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.010532518848776817,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.9814205169677734,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.011080932803452015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.8226406574249268,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.010538287460803986,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 4.029593467712402,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.011465945281088352,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.960726261138916,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.0108618950471282,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.8980398178100586,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.010339999571442604,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.983405113220215,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.010117891244590282,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.9767355918884277,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.010386128909885883,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.9415929317474365,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.010351025499403477,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.794034719467163,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.010884677991271019,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.9224600791931152,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.010773873887956142,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.882521390914917,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.010557166300714016,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.8566958904266357,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.010536021552979946,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 4.0177226066589355,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.010782448574900627,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.9123826026916504,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.012259316630661488,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.9082179069519043,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.012442185543477535,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.935253620147705,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.011048306711018085,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.8191399574279785,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.01034141331911087,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.956024646759033,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.011038210242986679,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.8852219581604004,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.011482541449368,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.8552491664886475,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.010966906324028969,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.9505701065063477,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.010703622363507748,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.8711719512939453,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.010880622081458569,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.874210834503174,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.011435945518314838,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.8634233474731445,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.011190537363290787,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.834467649459839,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.00980424229055643,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.851818084716797,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.010341738350689411,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.9530246257781982,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.009817896410822868,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.9131112098693848,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.01047087088227272,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.817899703979492,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.010247116908431053,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.935760974884033,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.010032808408141136,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.9065394401550293,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.009959318675100803,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.9358553886413574,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.010545285418629646,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.9537429809570312,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.010459063574671745,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.868861198425293,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.009678610600531101,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.9771389961242676,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.010761966928839684,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.923041343688965,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.010677576065063477,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.9786107540130615,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.010676741600036621,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.8509178161621094,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.01141789648681879,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.9142541885375977,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.010593809187412262,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.9438939094543457,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.010112748481333256,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.7702059745788574,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.010748161002993584,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.838205337524414,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.010649033822119236,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.751556396484375,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.010314499028027058,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.9019546508789062,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.010986926965415478,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.820539951324463,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.010041169822216034,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.8246195316314697,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.012162555009126663,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.962362766265869,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.629899978637695,
+ "eval_runtime": 85.481,
+ "eval_samples_per_second": 28.568,
+ "eval_steps_per_second": 1.79,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.011511481367051601,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.815683364868164,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.012574407272040844,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.7753467559814453,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.012173766270279884,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.8002219200134277,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.01307229045778513,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.6498148441314697,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.011586854234337807,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.723379611968994,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.011305336840450764,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.8636040687561035,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.010770306922495365,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.863016128540039,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.01125170849263668,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.881840705871582,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.012030471116304398,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.8817765712738037,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.011889533139765263,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.8045623302459717,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.0123107535764575,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.8879432678222656,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.011461477726697922,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.77366304397583,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.011112198233604431,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.8331174850463867,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.011280504986643791,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.9428482055664062,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.01064289454370737,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.8866519927978516,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.010694642551243305,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.9101250171661377,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.01199188269674778,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.7445998191833496,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.010890398174524307,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.880009651184082,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.010986912995576859,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.858964204788208,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.012368667870759964,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.866872787475586,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.012999574653804302,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.869506359100342,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.0119540486484766,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.8895955085754395,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.011919611133635044,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.8713624477386475,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.010563733987510204,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.854360580444336,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.01088758185505867,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.9863433837890625,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.011296373791992664,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.728609561920166,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.011117997579276562,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.900608539581299,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.010690092109143734,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.773066282272339,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.011517496779561043,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.908097743988037,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.011297475546598434,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.785518169403076,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.011774522252380848,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.951240301132202,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.010511872358620167,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.898623466491699,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.01159161888062954,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.7450759410858154,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.012622535228729248,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.8740897178649902,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.01106981374323368,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.7869417667388916,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.010965615510940552,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.7341647148132324,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.011208019219338894,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.9084837436676025,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.010710948146879673,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.9404633045196533,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.010723879560828209,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.8540186882019043,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.011042962782084942,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.84421706199646,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.011002677492797375,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.8881781101226807,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.012812180444598198,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.8858859539031982,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.011376631446182728,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.768159866333008,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.010488759726285934,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.8189263343811035,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.010805865749716759,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.807474374771118,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.010717516764998436,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.8457653522491455,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.011142940260469913,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.9563636779785156,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.01116760354489088,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.745244264602661,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.010558689013123512,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.842268228530884,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.01111495029181242,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.7646007537841797,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.011153158731758595,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.875667095184326,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.01162844430655241,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.8176357746124268,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.010929273441433907,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.8745524883270264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.010437211021780968,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.801875114440918,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.011714253574609756,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.8457753658294678,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.01128415297716856,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.849414348602295,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.0105520598590374,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.8638744354248047,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.010928453877568245,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.7805519104003906,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.01154544297605753,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.8063130378723145,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.010886175557971,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.8018932342529297,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.010635017417371273,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.790377616882324,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.010519898496568203,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.983368396759033,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.011441218666732311,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.7907943725585938,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.01221360545605421,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.765820026397705,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.010830710642039776,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 4.003534317016602,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.01135318074375391,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.8551559448242188,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.014823293313384056,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.9815213680267334,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.013025115244090557,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.924241304397583,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.0101553276181221,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 4.0723443031311035,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.012571720406413078,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.8909096717834473,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.013566468842327595,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.8996996879577637,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.014272765256464481,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.8539466857910156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.620414733886719,
+ "eval_runtime": 85.2434,
+ "eval_samples_per_second": 28.647,
+ "eval_steps_per_second": 1.795,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.012074367143213749,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.8410253524780273,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.014286254532635212,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.7875261306762695,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.017569642513990402,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.8226816654205322,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.016590511426329613,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.938128709793091,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.012882485054433346,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.7010138034820557,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.014531395398080349,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.7836709022521973,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.015781082212924957,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.8485186100006104,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.015504764392971992,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.7098755836486816,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.012655007652938366,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.8346376419067383,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.01290210336446762,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.769796848297119,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.015385285019874573,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.861654758453369,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.01429051160812378,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.8049275875091553,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.01214558631181717,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.853189468383789,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.015257023274898529,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.8485867977142334,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.01401588972657919,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.742671251296997,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.011879785917699337,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.802128314971924,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.012397093698382378,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.7346596717834473,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.01456447597593069,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.776618480682373,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.014282099902629852,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.673670530319214,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.011789718642830849,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.8645644187927246,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.014003564603626728,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.8703198432922363,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.013203601352870464,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.832751989364624,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.011776245199143887,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.697592258453369,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.011362370103597641,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.6604275703430176,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.011934771202504635,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.849954128265381,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.011321560479700565,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.8939003944396973,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.011278622783720493,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.80043888092041,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.011219988577067852,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.72088623046875,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.011986256577074528,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.853048801422119,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.010439028032124043,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 4.006741046905518,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.010670551098883152,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.8120055198669434,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.010852249339222908,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.7261171340942383,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.011269894428551197,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.717071533203125,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.010703012347221375,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.8839147090911865,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.01081076730042696,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.789668560028076,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.01119368989020586,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.7824530601501465,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.010503538884222507,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.9010872840881348,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.010646075941622257,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.7963762283325195,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.010476659052073956,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.815866708755493,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.010914883576333523,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.7410686016082764,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.010305505245923996,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.832772731781006,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.010710855014622211,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.941805839538574,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.010200196877121925,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.8245506286621094,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.01110541820526123,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.721076488494873,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.010649279691278934,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.9620189666748047,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.011666350066661835,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.718165874481201,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.010778360068798065,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.8721981048583984,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.012113813310861588,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.6971333026885986,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.011371941305696964,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.82936954498291,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.011019962839782238,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.854365825653076,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.011195488274097443,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.876722812652588,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.011133303865790367,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.854990243911743,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.010802343487739563,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.8632092475891113,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.010828115046024323,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.7351198196411133,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.010700947605073452,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.86088228225708,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.010590414516627789,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.8715527057647705,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.011087710037827492,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.8589677810668945,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.011460598558187485,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.822814464569092,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.010769214481115341,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.8802614212036133,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.010772728361189365,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.7555761337280273,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.011214488185942173,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.8383407592773438,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.010878588072955608,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.7413854598999023,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.010260067880153656,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.800255060195923,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.010783256031572819,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.7339282035827637,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.010300736874341965,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.9011282920837402,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.01050292793661356,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.8408572673797607,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.010419820435345173,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.929624557495117,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.010534441098570824,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.8389062881469727,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.009849554859101772,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.973883628845215,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.009878809563815594,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.9080922603607178,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.010315601713955402,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.710033655166626,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.012090682983398438,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.914968490600586,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.6000237464904785,
+ "eval_runtime": 84.3949,
+ "eval_samples_per_second": 28.935,
+ "eval_steps_per_second": 1.813,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.01098595466464758,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.8293018341064453,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.012146810069680214,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.6914591789245605,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.012144665233790874,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.672290802001953,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.010488035157322884,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.752763271331787,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.011291133239865303,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.8085179328918457,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.011676127091050148,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.7776341438293457,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.011975069530308247,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.7317285537719727,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.011667255312204361,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.7061963081359863,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.012225139886140823,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.856548309326172,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.011574016883969307,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.844625473022461,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.011139079928398132,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.746826171875,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.011695715598762035,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.7915165424346924,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.011564397253096104,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.849781036376953,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.010902253910899162,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.8721957206726074,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.01267972681671381,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.7196736335754395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.011358649469912052,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.919512987136841,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.011036410927772522,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.8114471435546875,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.011998327448964119,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.8243329524993896,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.011142533272504807,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.8639392852783203,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.010713535360991955,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.769162178039551,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.011486412025988102,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.7145237922668457,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.013365180231630802,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.6966552734375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.012505118735134602,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.7208471298217773,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.010776310227811337,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.8106448650360107,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.013044707477092743,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.643601894378662,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.013414500281214714,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.742617607116699,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.012324818409979343,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.9633641242980957,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.011112147942185402,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.7014031410217285,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.011222519911825657,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.7302393913269043,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.011425459757447243,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.6111724376678467,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.011259129270911217,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.6706461906433105,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.011032751761376858,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.8024699687957764,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.010749325156211853,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.8828892707824707,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.011131943203508854,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.851710319519043,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.010242550633847713,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.858922004699707,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.011025975458323956,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.830212116241455,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.011354555375874043,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.8487133979797363,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.011285083368420601,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.7806899547576904,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.009995102882385254,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.825943946838379,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.011260299943387508,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.7661871910095215,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.010885214433073997,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.728891372680664,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.010914749465882778,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.651210069656372,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.010972256772220135,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.880051612854004,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.011609644629061222,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.792019844055176,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.01076072920113802,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.759305715560913,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.011043784208595753,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.7739481925964355,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.010551003739237785,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.892974853515625,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.010709116235375404,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.97403883934021,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.011284755542874336,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.682202100753784,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.011439262889325619,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.817227363586426,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.010503373108804226,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.696104049682617,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.010913492180407047,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.717217206954956,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.010813022963702679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.9186856746673584,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.010504172183573246,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.706868886947632,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.010735583491623402,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.803366184234619,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.010751239955425262,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.7577362060546875,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.01045430451631546,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.824903964996338,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.010554700158536434,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.803471803665161,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.010459354147315025,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.828946828842163,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.010894916951656342,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.8558573722839355,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.010433739051222801,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.858416795730591,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.010902623645961285,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.7386794090270996,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.010467786341905594,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.8269565105438232,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.01069339644163847,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.7873644828796387,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.010542310774326324,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.7905020713806152,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.010565508157014847,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.841482162475586,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.010608013719320297,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.776552677154541,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.010551434010267258,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.815901279449463,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.011121736839413643,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.759938955307007,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.01168640237301588,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.6711742877960205,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.010713277384638786,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.8046345710754395,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.01274355873465538,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.8205442428588867,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.653851509094238,
+ "eval_runtime": 84.413,
+ "eval_samples_per_second": 28.929,
+ "eval_steps_per_second": 1.813,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.011835121549665928,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.8538994789123535,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.012358210980892181,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.68070387840271,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.010982801206409931,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.7115354537963867,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.011809226125478745,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.733523368835449,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.012028186582028866,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.8103458881378174,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.011706877499818802,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.8124942779541016,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.013214824721217155,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.7883641719818115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.011493456549942493,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.7750420570373535,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.010648688301444054,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.8362419605255127,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.011935052461922169,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.705594539642334,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.010910818353295326,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.7417006492614746,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.011039982549846172,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.7649331092834473,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.011560715734958649,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.787877082824707,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.010883931070566177,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.7402868270874023,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.011613317765295506,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.6596624851226807,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.010946841910481453,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.8373587131500244,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.011364697478711605,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.835782051086426,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.010879823006689548,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.884202718734741,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.011060351505875587,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.8537373542785645,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.01056839432567358,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.7272658348083496,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.010968873277306557,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.8164658546447754,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.010696220211684704,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.824345588684082,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.010746701620519161,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.7690653800964355,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.010833295062184334,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.7120180130004883,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.010505889542400837,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.863776445388794,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.010879415087401867,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.8087613582611084,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.010765374638140202,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.7535347938537598,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.010739347897469997,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.7427191734313965,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.011077574454247952,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.8276665210723877,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.010721394792199135,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.8159728050231934,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.01090798620134592,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.8832767009735107,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.010897727683186531,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.834407329559326,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.011375446803867817,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.816559076309204,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.012578863650560379,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.8119935989379883,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.010998054407536983,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.7607805728912354,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.010973364114761353,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.8520750999450684,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.012247582897543907,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.7228598594665527,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.011055019684135914,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.8229427337646484,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.011345181614160538,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.7088441848754883,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.010623784735798836,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.842665672302246,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.011510200798511505,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.7346155643463135,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.01085889432579279,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.9091005325317383,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.011483512818813324,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.6774628162384033,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.01169754657894373,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.805418014526367,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.010753422044217587,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.8417539596557617,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.010333525948226452,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.940634250640869,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.011270534247159958,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.8078689575195312,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.010964984074234962,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.5973827838897705,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.011286620981991291,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.827928066253662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.010751689784228802,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.790165424346924,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.01152054313570261,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.8387513160705566,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.011646322906017303,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.822841167449951,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.011617179028689861,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.8654866218566895,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.010603098198771477,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.724824905395508,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.01164249423891306,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.8022966384887695,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.011870439164340496,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.839895009994507,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.011322998441755772,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.81400728225708,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.011069455184042454,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.7506797313690186,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.012023651972413063,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.862222671508789,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.010537683963775635,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.828303337097168,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.011298646219074726,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.828731060028076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.011739256791770458,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.810626745223999,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.010453609749674797,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.7593984603881836,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.011474397033452988,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.7422327995300293,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.01103881374001503,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.761174201965332,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.01095945481210947,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.726083755493164,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.010641214437782764,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.7877697944641113,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.010943214409053326,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.672283411026001,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.010196125134825706,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.801036834716797,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.010735539719462395,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.7579617500305176,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.010973691008985043,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.720263957977295,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.012658403255045414,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.834487199783325,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.622317314147949,
+ "eval_runtime": 85.6075,
+ "eval_samples_per_second": 28.526,
+ "eval_steps_per_second": 1.787,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.012221621349453926,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.7627463340759277,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.013135075569152832,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.7844247817993164,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.013170014135539532,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.818237781524658,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.011589646339416504,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.8020315170288086,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.01251091156154871,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.7725701332092285,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.012891864404082298,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.770443916320801,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.011410247534513474,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.7357795238494873,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.011896900832653046,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.8181862831115723,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.013186860829591751,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.8368823528289795,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.011350966058671474,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.865201711654663,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.011509046889841557,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.8134939670562744,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.012778270058333874,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.7049672603607178,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.011080496944487095,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.585240602493286,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.011986466124653816,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.5464162826538086,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.01239814329892397,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.869504928588867,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.010922676883637905,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.689619541168213,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.011846546083688736,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.718783378601074,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.0132194384932518,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.7223048210144043,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.011813106946647167,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.72087025642395,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.011289218440651894,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.744448184967041,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.012738044373691082,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.7712485790252686,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.011673792265355587,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.772463798522949,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.010565067641437054,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.8961498737335205,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.012948057614266872,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.784403085708618,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.01291747111827135,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.9311203956604004,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.010577475652098656,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.8164238929748535,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.01205415278673172,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.7477498054504395,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.013052346184849739,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.6452393531799316,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.010738392360508442,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.863175392150879,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.011833506636321545,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.6790335178375244,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.012708249501883984,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.7472329139709473,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.011452332139015198,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.795750379562378,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.011169432662427425,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.7254080772399902,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.011717136017978191,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.824097156524658,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.01113469060510397,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.804236888885498,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.012446170672774315,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.771315097808838,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.011456575244665146,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.7870168685913086,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.01099369116127491,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.7555341720581055,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.01148857269436121,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.718329429626465,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.011267481371760368,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.795982837677002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.010826817713677883,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.8777594566345215,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.012914626859128475,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.780271053314209,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.011905672028660774,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.667747974395752,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.010853438638150692,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.8123393058776855,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.01198440883308649,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.669010639190674,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.011725930497050285,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.690924644470215,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.011250975541770458,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.8481712341308594,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.012081993743777275,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.836412191390991,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.011358530260622501,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.714931011199951,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.011656605638563633,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.779855251312256,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.011361461132764816,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.750562906265259,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.01111642736941576,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.677558422088623,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.011434067972004414,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.8261594772338867,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.01109747588634491,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.7544002532958984,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.01116955280303955,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.8112525939941406,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.011463560163974762,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.823795795440674,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.010840185917913914,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.7840795516967773,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.011257193982601166,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.8014907836914062,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.010883461683988571,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.934812068939209,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.011461238376796246,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.7989964485168457,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.010654035955667496,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.813706398010254,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.010837544687092304,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.849246025085449,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.011188001371920109,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.7655930519104004,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.010620510205626488,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.8499178886413574,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.01100193802267313,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.802701473236084,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.011393132619559765,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.6669745445251465,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.009844624437391758,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.820718288421631,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.010924831964075565,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.7869009971618652,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.010494636371731758,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.790957450866699,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.010310249403119087,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.8752992153167725,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.010647440329194069,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.8087809085845947,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.012783640995621681,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.764528512954712,
+ "step": 2520
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.0738955215857254e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-2520/training_args.bin b/runs/i5-exp-lm/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-2880/chat_template.jinja b/runs/i5-exp-lm/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-2880/config.json b/runs/i5-exp-lm/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-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.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-2880/generation_config.json b/runs/i5-exp-lm/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-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.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-2880/model.safetensors b/runs/i5-exp-lm/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..449a1ab3ca7852d940842a447294e667a4ef6bd3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b417129fdd589b75adaf70a50f8a1405e658390646e5e2363ad3916802c9094d
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-2880/optimizer.pt b/runs/i5-exp-lm/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..957d9405f01282b8054f47c010403b153c283ee1
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b432bcb7a3e64112666ea81e3bfd301569104fd2f6ebc6d1f65788ac7ad028f4
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-2880/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1a6a4e1d0b87470d28d062c8f411c9987991029d
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:14de9b8fcc4c29c666bfcc387ad0902ea6127e0ca10608068414b6205309da76
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-2880/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5dd045a8f727b9eeabae1f4a0af26538c6dd87e4
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad66e4e5b8bb576b1e605aba24633cb96dcd353bec40cde4c3c3ec564a7ec28a
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-2880/scheduler.pt b/runs/i5-exp-lm/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5c7f6b411db3da6cc58af5b4530e84dddd5abe00
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2e88932b62643ef7a711b903ac04665eab5638dccef14b4bec61d20b2791e67b
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-2880/tokenizer.json b/runs/i5-exp-lm/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-2880/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-2880/trainer_state.json b/runs/i5-exp-lm/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b33860390e9ff2d2a6f7323d11754db7c6761114
--- /dev/null
+++ b/runs/i5-exp-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": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.551431655883789,
+ "eval_runtime": 85.7406,
+ "eval_samples_per_second": 28.481,
+ "eval_steps_per_second": 1.784,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.009876579977571964,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 4.164706230163574,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.012572702020406723,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 4.014013767242432,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.01369260810315609,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 4.120209693908691,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.014534002169966698,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 4.229783058166504,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.015219368040561676,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 4.105164527893066,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.015543874353170395,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 4.066263198852539,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.0142653938382864,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 4.1460795402526855,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.014713063836097717,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 4.139624118804932,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.014000465162098408,
+ "learning_rate": 0.000407857329622967,
+ "loss": 4.002811908721924,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.013888941146433353,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 4.17318058013916,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.014635670930147171,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 4.152536392211914,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.015171809121966362,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 4.1005167961120605,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.01345653086900711,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 4.135690689086914,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.013164847157895565,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 4.149524211883545,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.013102286495268345,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 4.193521499633789,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.011267323978245258,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 4.1657867431640625,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.011742684058845043,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 4.1137213706970215,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.01192871481180191,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 4.260440826416016,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.013026650995016098,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 4.185743808746338,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.013810441829264164,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 4.054473400115967,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.011503677815198898,
+ "learning_rate": 0.000404858275823277,
+ "loss": 4.185676574707031,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.01065174862742424,
+ "learning_rate": 0.000404607816444578,
+ "loss": 4.013198375701904,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.011239566840231419,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 4.118226528167725,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.012186541222035885,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 4.185783863067627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.01248143333941698,
+ "learning_rate": 0.000403855947934478,
+ "loss": 4.125214099884033,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.012454871088266373,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 4.112842559814453,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.012563669122755527,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 4.154864311218262,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.012546264566481113,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 4.123438835144043,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.01277274452149868,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 4.163538932800293,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.011936571449041367,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 4.101528167724609,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.01149666029959917,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 4.040679931640625,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.01097810547798872,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 4.136455535888672,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.009719183668494225,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 4.041109085083008,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.00986333005130291,
+ "learning_rate": 0.000401595976318565,
+ "loss": 4.124299049377441,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.00912073440849781,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 4.199904441833496,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.009418101981282234,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 4.151755332946777,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.009513386525213718,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 4.254427909851074,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.009743732400238514,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 4.140321731567383,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.00963711366057396,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 4.124331474304199,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.010302593000233173,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 4.132112979888916,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.011983472853899002,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 4.160226821899414,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.012036876752972603,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 4.095509052276611,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.01125854067504406,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 4.117288589477539,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.011722338385879993,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 4.193219184875488,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.012395180761814117,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 4.120162487030029,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.011256304569542408,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 4.083768367767334,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.01025543361902237,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 4.049867630004883,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.010927550494670868,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 4.256014823913574,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.011399165727198124,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 4.091549396514893,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.010450828820466995,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 4.204381942749023,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.011282199062407017,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 4.153038501739502,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.010513713583350182,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 4.108619213104248,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.010266946628689766,
+ "learning_rate": 0.000396803974909638,
+ "loss": 4.169204235076904,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.010166850872337818,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 4.096996307373047,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.01009226031601429,
+ "learning_rate": 0.000396297942393265,
+ "loss": 4.104363441467285,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.010323838330805302,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 4.194367408752441,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.01049391832202673,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 4.116766929626465,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.011563598178327084,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 4.131492614746094,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.011230280622839928,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 4.169009685516357,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.009461907669901848,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 4.137299060821533,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.010689560323953629,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 4.214145660400391,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.011656688526272774,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 4.166624069213867,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.011863510124385357,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 4.131100177764893,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.010448232293128967,
+ "learning_rate": 0.000394017098798633,
+ "loss": 4.101202964782715,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.010062103159725666,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 4.161185264587402,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.01093286368995905,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 4.042693138122559,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.010100377723574638,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 4.060758113861084,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.010339124128222466,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 4.20787239074707,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.010003306902945042,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 4.067782402038574,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.010493419133126736,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 4.125699996948242,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.010171142406761646,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 4.1621246337890625,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.011140113696455956,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 4.237761497497559,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.567854881286621,
+ "eval_runtime": 84.4609,
+ "eval_samples_per_second": 28.913,
+ "eval_steps_per_second": 1.811,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.01077568531036377,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 4.181587219238281,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.01187620684504509,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 4.131726264953613,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.013522771187126637,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 4.122220993041992,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.013684876263141632,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 4.041871070861816,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.013173004612326622,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.970202922821045,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.012073843739926815,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.8631794452667236,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.01288041565567255,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 4.006192207336426,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.013644886203110218,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 4.2370381355285645,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.013753894716501236,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.9589552879333496,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.012465177103877068,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 4.035869598388672,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.011406811885535717,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 4.080760955810547,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.012969305738806725,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 4.074190139770508,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.013275290839374065,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 4.067647933959961,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.01310755591839552,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 4.096287250518799,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.012664602138102055,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.9706339836120605,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.010615247301757336,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 4.117854118347168,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.01068687904626131,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 4.052369117736816,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.011366557329893112,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 4.138422966003418,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.011061202734708786,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 4.126469612121582,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.011635071597993374,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.968297004699707,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.011073353700339794,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 4.075834274291992,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.011658500880002975,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 4.061251640319824,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.012086226604878902,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 4.1972856521606445,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.012222395278513432,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 4.097524642944336,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.011842718347907066,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 4.149069786071777,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.011621825397014618,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 4.0996832847595215,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.010307750664651394,
+ "learning_rate": 0.00038509205478744,
+ "loss": 4.089378356933594,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.009588676504790783,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 4.066476821899414,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.010809775441884995,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 4.19119930267334,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.012743748724460602,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 4.0750932693481445,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.011777926236391068,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 4.044826507568359,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.010044556111097336,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 4.1896867752075195,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.011860032565891743,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 4.092286109924316,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.012056638486683369,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 4.116976737976074,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.011735365726053715,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 4.148249626159668,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.010875556617975235,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 4.195129871368408,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.010493649169802666,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 4.163764476776123,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.010560980066657066,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 4.122279644012451,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.010246366262435913,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 4.1063714027404785,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.00991209875792265,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 4.08073616027832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.009893461130559444,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 4.134050369262695,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.009423932991921902,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 4.193440914154053,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.00842279102653265,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 4.058138847351074,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.00924934446811676,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 4.018709182739258,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.009752786718308926,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 4.012757778167725,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.009239202365279198,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 4.1526408195495605,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.009407109580934048,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 4.116143226623535,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.009414082393050194,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 4.100341796875,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.009516751393675804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 4.085671424865723,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.008972907438874245,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 4.1414794921875,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.009903272613883018,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.919322967529297,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.010267534293234348,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 4.123221397399902,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.011000022292137146,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 4.159793376922607,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.012496626935899258,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 4.062358379364014,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.012963531538844109,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 4.136105537414551,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.01102963276207447,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 4.005084037780762,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.010507521219551563,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 4.038727760314941,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.010605179704725742,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 4.083990097045898,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.010178995318710804,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 4.0194501876831055,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.011055036447942257,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 4.088884353637695,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.00979774259030819,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 4.078244209289551,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.00978800468146801,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 4.1270880699157715,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.009614141657948494,
+ "learning_rate": 0.000375827577564042,
+ "loss": 4.101253509521484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.009357909671962261,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 4.099915027618408,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.009440246038138866,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 4.164741039276123,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.008768280036747456,
+ "learning_rate": 0.000375051971546236,
+ "loss": 4.124988079071045,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.009859531186521053,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 4.220903396606445,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.010455301962792873,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 4.152346611022949,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.009803061373531818,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 4.048665523529053,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.009574026800692081,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 4.0821943283081055,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.009048961102962494,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 4.041666507720947,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.010180778801441193,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 4.200588703155518,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.604552745819092,
+ "eval_runtime": 84.8713,
+ "eval_samples_per_second": 28.773,
+ "eval_steps_per_second": 1.803,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.011329853907227516,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.9900457859039307,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.014984005130827427,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 4.07473611831665,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.016141744330525398,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.9724981784820557,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.01465766504406929,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.9986071586608887,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.015666628256440163,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 4.071915626525879,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.014640172012150288,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 4.036019325256348,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.01469016820192337,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 4.05607271194458,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.014554283581674099,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 4.129990577697754,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.014493918046355247,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 4.062219619750977,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.014379715546965599,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 4.062480926513672,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.013458595611155033,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.9154977798461914,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.012699708342552185,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.9537384510040283,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.011132895946502686,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 4.0615739822387695,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.011430074460804462,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 4.143531799316406,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.01210040133446455,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 4.012790679931641,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.012245144695043564,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 4.106157302856445,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.012887321412563324,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 4.015830993652344,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.012803677469491959,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 4.1782965660095215,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.011368817649781704,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 4.072640419006348,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.010358075611293316,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 4.098837852478027,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.010589832440018654,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 4.117313861846924,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.010321256704628468,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 4.218641757965088,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.011689630337059498,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.9875400066375732,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.010908936150372028,
+ "learning_rate": 0.000367268105959126,
+ "loss": 4.027227401733398,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.010584350675344467,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 4.10093879699707,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.01010285597294569,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 4.074665546417236,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.011812037788331509,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 4.034531593322754,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.011600959114730358,
+ "learning_rate": 0.000366226612810024,
+ "loss": 4.113184928894043,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.010876321233808994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 4.070537567138672,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.009968291968107224,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 4.203442096710205,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.011262387968599796,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 4.0556769371032715,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.01032582949846983,
+ "learning_rate": 0.000365184304613104,
+ "loss": 4.08148193359375,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.010996437631547451,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 4.057895660400391,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.010615769773721695,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 4.124999046325684,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.010909738019108772,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 4.031045913696289,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.010457244701683521,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 4.011176109313965,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.010345135815441608,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 4.030368328094482,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.00980544276535511,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 4.110050678253174,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.009972338564693928,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 4.00167179107666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.010071652941405773,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.9824132919311523,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.010037647560238838,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 4.027332305908203,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.010439334437251091,
+ "learning_rate": 0.000362575056487632,
+ "loss": 4.065634727478027,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.009809018112719059,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 4.128786563873291,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.009842394851148129,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 4.052270889282227,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.00916555617004633,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 4.145816326141357,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.00887344591319561,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 4.095729827880859,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.009776724502444267,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 4.113144397735596,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.009635286405682564,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.942356586456299,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.009097062051296234,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 4.117036819458008,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.009455705061554909,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 4.096042633056641,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.010677946731448174,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.999386787414551,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.009964345954358578,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 4.168429374694824,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.009584939107298851,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 4.039562225341797,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.009133868850767612,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 4.137625694274902,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.009551159106194973,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 4.130338668823242,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.009856447577476501,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 4.096878528594971,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.009551186114549637,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.99261474609375,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.009219125844538212,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 4.010861396789551,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.00918554700911045,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.981205463409424,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.009746214374899864,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 4.120397567749023,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.010356797836720943,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 4.019916534423828,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.010084329172968864,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 4.065004348754883,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.009301368147134781,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 4.122297763824463,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.009626660495996475,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 4.1999053955078125,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.010422289371490479,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.995299816131592,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.011208872310817242,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 4.0599751472473145,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.010681918822228909,
+ "learning_rate": 0.000356031397755195,
+ "loss": 4.077420711517334,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.01082858256995678,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 4.202306270599365,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.010040241293609142,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 4.226383209228516,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.009776259772479534,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 4.0426506996154785,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.009816191159188747,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 4.10113525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.011430559679865837,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.9381566047668457,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.570052623748779,
+ "eval_runtime": 84.6451,
+ "eval_samples_per_second": 28.85,
+ "eval_steps_per_second": 1.808,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.011132825165987015,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 4.0361833572387695,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.012743635103106499,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.924943685531616,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.013857677578926086,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.922771453857422,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.014101691544055939,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 4.15196418762207,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.014825007878243923,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 4.034111976623535,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.01563287526369095,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.931384563446045,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.014393665827810764,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.886596202850342,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.013301689177751541,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 4.0370354652404785,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.012488034553825855,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 4.0232696533203125,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.011063582263886929,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.981332302093506,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.012320222333073616,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.9484620094299316,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.011997769586741924,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 4.041739463806152,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.011553142219781876,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 4.001791954040527,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.011633829213678837,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.917846202850342,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.011593331582844257,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 4.075129508972168,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.011368625797331333,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 4.026906967163086,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.010605502873659134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 4.071677207946777,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.010172054171562195,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.945216655731201,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.010856307111680508,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.971095323562622,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.009842454455792904,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 4.060256481170654,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.010291303507983685,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.9854986667633057,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.009987153112888336,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 4.0489726066589355,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.010083730332553387,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.998929023742676,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.010800480842590332,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 4.100696086883545,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.010760601609945297,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.942884922027588,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.011136551387608051,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 4.020368576049805,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.01087525486946106,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.970954418182373,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.010280475951731205,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 4.104029655456543,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.010815252549946308,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 4.010892391204834,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.010867281816899776,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 4.0223493576049805,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.010291614569723606,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.979717254638672,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.009741781279444695,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 4.018221855163574,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.011015533469617367,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 4.026700973510742,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.010466188192367554,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 4.101867198944092,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.01033122930675745,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 4.045816898345947,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.010766522027552128,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.996644973754883,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.010843119584023952,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.97576642036438,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.012119865044951439,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.882136821746826,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.012413941323757172,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 4.005892753601074,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.011253178119659424,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 4.066131591796875,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.009961821138858795,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 4.015138626098633,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.010008499026298523,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 4.022852897644043,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.010745653882622719,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.9275522232055664,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.010398740880191326,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 4.0531721115112305,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.01038513332605362,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 4.061971664428711,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.009928431361913681,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 4.143259048461914,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.010413208045065403,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 4.061119556427002,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.01139519177377224,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 4.09278678894043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.011986100114881992,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.947401523590088,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.011387983337044716,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 4.068734169006348,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.009954501874744892,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 4.070131778717041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.00955903809517622,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.9322071075439453,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.010283265262842178,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.9960098266601562,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.010511606931686401,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.9909510612487793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.009582840837538242,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 4.079389572143555,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.00974298920482397,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 4.138494491577148,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.010466743260622025,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 4.056201457977295,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.010316438972949982,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 4.099299907684326,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.010122894309461117,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 4.239686965942383,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.009907642379403114,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.9789676666259766,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.01069258525967598,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 4.041545391082764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.01007404737174511,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 4.071598052978516,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.009585035033524036,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.9430413246154785,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.010451397858560085,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 4.13792085647583,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.011326397769153118,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.914581775665283,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.011229630559682846,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.9398770332336426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.009682882577180862,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 4.08770227432251,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.009850278496742249,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 4.091458797454834,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.010133294388651848,
+ "learning_rate": 0.000336518346307424,
+ "loss": 4.060453414916992,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.011278501711785793,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 4.080122947692871,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.011924702674150467,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 4.161231994628906,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.013833330944180489,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.9359490871429443,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.596139907836914,
+ "eval_runtime": 86.0775,
+ "eval_samples_per_second": 28.37,
+ "eval_steps_per_second": 1.777,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.013592035509645939,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.9522242546081543,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.013502624817192554,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 4.0113677978515625,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.013949453830718994,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.9946117401123047,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.014419623650610447,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.9795098304748535,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.01568395458161831,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 4.091269493103027,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.015030908398330212,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 4.062928676605225,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.013131589628756046,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 4.0576863288879395,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.013200934045016766,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.9778010845184326,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.013214852660894394,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 4.0181884765625,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.012748941779136658,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.8231043815612793,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.011799106374382973,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 4.045605659484863,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.011282660067081451,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.9676876068115234,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.0109232347458601,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.9386894702911377,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.011680151335895061,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.960446357727051,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.011029785498976707,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 4.071208477020264,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.010873311199247837,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.910928249359131,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.010651886463165283,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 4.041978359222412,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.010444678366184235,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 4.054442405700684,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.010614353232085705,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 4.05772590637207,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.01047259010374546,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.873579502105713,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.009985635057091713,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.993783712387085,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.010010694153606892,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.984926223754883,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.010369695723056793,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 4.085610389709473,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.010580260306596756,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.949125289916992,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.01043667085468769,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.9963903427124023,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.010741197504103184,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 4.053349018096924,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.010334794409573078,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 4.120090007781982,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.01040970254689455,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.8926737308502197,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.010715796612203121,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.9743237495422363,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.011393639259040356,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.98507022857666,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.010942629538476467,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.898818016052246,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.010325280018150806,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.8614513874053955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.010317712090909481,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.939861297607422,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.010228334926068783,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 4.04915189743042,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.010809719562530518,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 4.05153751373291,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.010143210180103779,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 4.1973876953125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.010687801986932755,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.9684720039367676,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.013338417746126652,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 4.0303544998168945,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.014791577123105526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 4.093402862548828,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.013393090106546879,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 4.098799228668213,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.012639272026717663,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.9800333976745605,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.011467873118817806,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 4.151701927185059,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.011315679177641869,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 4.113883972167969,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.011210434138774872,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.9912962913513184,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.01087957713752985,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.967313766479492,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.011848476715385914,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.978968620300293,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.011160468682646751,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 4.03514289855957,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.009814568795263767,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 4.026996612548828,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.009992859326303005,
+ "learning_rate": 0.000322712903929477,
+ "loss": 4.024201393127441,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.010100461542606354,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.955676555633545,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.009547922760248184,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.937321662902832,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.010318727232515812,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 4.056231498718262,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.009653892368078232,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 4.024428844451904,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.009993361309170723,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.950716018676758,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.01103970780968666,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.945801258087158,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.011700308881700039,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.9194111824035645,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.012860790826380253,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 4.030028343200684,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.011987055651843548,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.90966796875,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.010467334650456905,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.9390382766723633,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.010487129911780357,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.9514942169189453,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.010463234037160873,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 4.016255855560303,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.01121378131210804,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 4.002895355224609,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.010914308950304985,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 4.018136024475098,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.010348659940063953,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 4.03448486328125,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.009568385779857635,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 4.069923400878906,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.009966057725250721,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.914461135864258,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.00994907971471548,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.971266269683838,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.009441893547773361,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 4.057741165161133,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.009497676976025105,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 4.140096664428711,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.010003750212490559,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 4.040005207061768,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.009717513807117939,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 4.030487537384033,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.011040066368877888,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 4.065431594848633,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.603287696838379,
+ "eval_runtime": 85.8724,
+ "eval_samples_per_second": 28.438,
+ "eval_steps_per_second": 1.782,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.011107868514955044,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 4.011427402496338,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.014340977184474468,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.8326802253723145,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.014210023917257786,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 4.009984016418457,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.013904218561947346,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 4.116009712219238,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.014743667095899582,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.8629159927368164,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.013711526058614254,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.9335215091705322,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.013057132251560688,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.908352851867676,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.012818509712815285,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.9947872161865234,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.012549753300845623,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.8811845779418945,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.01136186346411705,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.978353261947632,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.011574970558285713,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.9344143867492676,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.011323983781039715,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.9808664321899414,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.010912686586380005,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 4.017498016357422,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.010812945663928986,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.88407039642334,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.01065861713141203,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.9926493167877197,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.01069044228643179,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 4.0090131759643555,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.010497510433197021,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.935544967651367,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.011448034085333347,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.99393892288208,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.011814731173217297,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.996981620788574,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.012805991806089878,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.990048408508301,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.013853369280695915,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.8463478088378906,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.014118191786110401,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.9070587158203125,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.012672449462115765,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 4.021424293518066,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.011798200197517872,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.965221881866455,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.011141994036734104,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.83060622215271,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.011542421765625477,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.9407637119293213,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.014908739365637302,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 4.01406717300415,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.014702459797263145,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 4.043688774108887,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.011113990098237991,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 4.042995929718018,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.011973917484283447,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.917491912841797,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.014942649751901627,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.9875829219818115,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.014178650453686714,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 4.054706573486328,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.012302055023610592,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.929983615875244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.01186611969023943,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.945169687271118,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.011537456884980202,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 4.049633026123047,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.011318233795464039,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.926973342895508,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.010335283353924751,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.977968692779541,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.010157988406717777,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 4.040463447570801,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.010198986157774925,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.876478433609009,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.011112391017377377,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.9707107543945312,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.011649145744740963,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 4.014248847961426,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.011027307249605656,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.9882264137268066,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.010242706164717674,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.8625729084014893,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.009813128970563412,
+ "learning_rate": 0.000304866093757771,
+ "loss": 4.065174102783203,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.010923790745437145,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 4.07213830947876,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.01187705434858799,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 4.038900375366211,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.011698390357196331,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.950251579284668,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.010257775895297527,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 4.068069934844971,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.010501123033463955,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.9558424949645996,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.011701171286404133,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.968338966369629,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.012152766808867455,
+ "learning_rate": 0.000303,
+ "loss": 4.086882591247559,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.011028476059436798,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.9539551734924316,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.011379408650100231,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.8860912322998047,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.010008374229073524,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 4.095733642578125,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.011070288717746735,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.9810352325439453,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.012155449017882347,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.969482898712158,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.01056651584804058,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 4.042746543884277,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.010865111835300922,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.9409804344177246,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.010306884534657001,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 4.078839302062988,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.00993148609995842,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 4.047484397888184,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.009858231991529465,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.974020004272461,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.009922944940626621,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.9741368293762207,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.010188239626586437,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.920858860015869,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.009717893786728382,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 4.0424394607543945,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.009679177775979042,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 4.004914283752441,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.010174429975450039,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.975625991821289,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.010131667368113995,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.902825355529785,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.009707369841635227,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 4.042960166931152,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.009920211508870125,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.966573476791382,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.009672066196799278,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.93103289604187,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.010291875340044498,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.9984607696533203,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.011761458590626717,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 4.043583869934082,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.599700450897217,
+ "eval_runtime": 87.3222,
+ "eval_samples_per_second": 27.965,
+ "eval_steps_per_second": 1.752,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.011074044741690159,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.9737820625305176,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.01350400224328041,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.9737653732299805,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.015932954847812653,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.939518451690674,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.013929862529039383,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.8696722984313965,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.010929702781140804,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.791276454925537,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.010906493291258812,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.995974063873291,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.011713053099811077,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.8848793506622314,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.011010564863681793,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.9641356468200684,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.010945162735879421,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.9572525024414062,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.0103533286601305,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.9543161392211914,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.011024084873497486,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.909083843231201,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.011396311223506927,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.903420925140381,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.009475707076489925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 4.0093092918396,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.010503377765417099,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.8529200553894043,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.011094511486589909,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.9325509071350098,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.010803001001477242,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.8839521408081055,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.010747581720352173,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 4.001172065734863,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.0103462478145957,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.8773140907287598,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.010612964630126953,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.7979984283447266,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.011453553102910519,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 4.045482635498047,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.011249526403844357,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 4.061059474945068,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.01041093748062849,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.913604259490967,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.010158784687519073,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.876260280609131,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.01079870481044054,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.841350555419922,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.01098064798861742,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.9297823905944824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.01065402664244175,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 4.0244903564453125,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.010416185483336449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.90169095993042,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.010907797142863274,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.9648971557617188,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.01072609331458807,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.910158157348633,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.010549080558121204,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.8769569396972656,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.012598100118339062,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.861464500427246,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.011794711463153362,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.894925117492676,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.011026293970644474,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.969573497772217,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.010959511622786522,
+ "learning_rate": 0.000288343693342466,
+ "loss": 4.111845970153809,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.011551665142178535,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 4.003201961517334,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.012172834947705269,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.964582920074463,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.013538642786443233,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 4.052495002746582,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.014221726916730404,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.9965338706970215,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.012400173582136631,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 4.001407623291016,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.01180094014853239,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.856201410293579,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.011389389634132385,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.9924964904785156,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.0107188755646348,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 4.04386043548584,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.010961013846099377,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.9631590843200684,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.010923122987151146,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.953301191329956,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.01061448734253645,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.9261679649353027,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.010924954898655415,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.9537997245788574,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.01066056452691555,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.9342002868652344,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.009984925389289856,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.988720417022705,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.010581002570688725,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.970776081085205,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.011563191190361977,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.966728925704956,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.010714497417211533,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.9598939418792725,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.011376265436410904,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.8844943046569824,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.011425293982028961,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.8499813079833984,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.01086503267288208,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.8147051334381104,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.010077040642499924,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 4.017036437988281,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.010627911426126957,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.9156417846679688,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.010287647135555744,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.9441888332366943,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.01014758087694645,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 4.044958591461182,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.011006060056388378,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.797041893005371,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.011467166244983673,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.9570345878601074,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.010885256342589855,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.7906641960144043,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.010804297402501106,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.971190929412842,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.011160610243678093,
+ "learning_rate": 0.000280627938758204,
+ "loss": 4.060389518737793,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.009990973398089409,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.917522430419922,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.00998917780816555,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 4.013736248016357,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.011042946018278599,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.799297332763672,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.010925267823040485,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.94362211227417,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.011051100678741932,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 4.001194953918457,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.010502695105969906,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 4.134047508239746,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.010572216473519802,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.9747796058654785,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.010007299482822418,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 4.044950485229492,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.011629229411482811,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 4.084447860717773,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.588645935058594,
+ "eval_runtime": 85.4714,
+ "eval_samples_per_second": 28.571,
+ "eval_steps_per_second": 1.79,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.011689464561641216,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.9075310230255127,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.014014136046171188,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 4.014795303344727,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.011509428732097149,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.9163098335266113,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.01121868658810854,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.9568498134613037,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.011642883531749249,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.9395787715911865,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.011057519353926182,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.8263654708862305,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.010972758755087852,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.9097914695739746,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.010745537467300892,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.854860544204712,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.011182599700987339,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 4.041356563568115,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.012797663919627666,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.830272912979126,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.012043065391480923,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.8452553749084473,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.013106790371239185,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.8310980796813965,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.013427415862679482,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.9251890182495117,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.013122874312102795,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.957672119140625,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.012872692197561264,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.878587245941162,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.011384270153939724,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.854142665863037,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.011137540452182293,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.9605469703674316,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.011310633271932602,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.940114974975586,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.01179711427539587,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.938386917114258,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.011187809519469738,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.944530487060547,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.011170677840709686,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.9430172443389893,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.010550163686275482,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.7957606315612793,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.010384478606283665,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.9056930541992188,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.010651282034814358,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.8139357566833496,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.0107306819409132,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 4.003175735473633,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.011411326937377453,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.919771432876587,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.01133117638528347,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.9188013076782227,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.01031514909118414,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.932736873626709,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.009824352338910103,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 4.015635967254639,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.01049763523042202,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.9969911575317383,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.011549605056643486,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.834160804748535,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.011060566641390324,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.8837857246398926,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.009798712097108364,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.949749231338501,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.010602886788547039,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 4.000707149505615,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.00990439672023058,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.885244131088257,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.009604494087398052,
+ "learning_rate": 0.00026868712586269,
+ "loss": 4.074821472167969,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.009423203766345978,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 4.000557899475098,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.0098728621378541,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.9387454986572266,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.010560811497271061,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 4.009432792663574,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.009980306960642338,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.896604061126709,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.009540977887809277,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.9122257232666016,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.010007701814174652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 4.008612155914307,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.011056117713451385,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 4.038888931274414,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.011715954169631004,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.9493355751037598,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.012441720813512802,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.9336190223693848,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.01239983644336462,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.800154209136963,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.010556857101619244,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.996401309967041,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.010134321637451649,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.9100875854492188,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.010460550896823406,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.892467498779297,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.010920022614300251,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.8093631267547607,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.010078933089971542,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.9534246921539307,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.010934804566204548,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.8959293365478516,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.009791049174964428,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 4.032570838928223,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.009695373475551605,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.872560977935791,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.010239834897220135,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.898049831390381,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.011325928382575512,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 4.000666618347168,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.010393583215773106,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.916602611541748,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.010357106104493141,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 4.027385711669922,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.010646609589457512,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.87898850440979,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.010656338185071945,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.9381659030914307,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.010371637530624866,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.878948211669922,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.010396607220172882,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 4.031810760498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.0101687116548419,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.986933708190918,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.009972655214369297,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.8843746185302734,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.010430166497826576,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.9313480854034424,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.010458354838192463,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.953433036804199,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.009931962937116623,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.991569995880127,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.010947883129119873,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.9206581115722656,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.010655615478754044,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.891333818435669,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.01125908549875021,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.8434605598449707,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.011453676968812943,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.9852113723754883,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.012835046276450157,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.761152744293213,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.577749729156494,
+ "eval_runtime": 86.0183,
+ "eval_samples_per_second": 28.389,
+ "eval_steps_per_second": 1.779,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.011688253842294216,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.9019522666931152,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.013192981481552124,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.897005796432495,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.012870961800217628,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.8835902214050293,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.012850126251578331,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.9463181495666504,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.013198571279644966,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.9062042236328125,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.013023433275520802,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.8452041149139404,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.011843542568385601,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.8098270893096924,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.011327624320983887,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.9676313400268555,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.011951684951782227,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.9325199127197266,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.012988871894776821,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.9741406440734863,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.01474353950470686,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.954935073852539,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.015253514051437378,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.9670064449310303,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.013718944974243641,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.9320693016052246,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.011357603594660759,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.7773828506469727,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.01170849148184061,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.8851189613342285,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.01428207941353321,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.8826663494110107,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.016005778685212135,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.9117560386657715,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.014198106713593006,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.8031065464019775,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.011704663746058941,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.891038417816162,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.010909215547144413,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.8263349533081055,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.012448816560208797,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.9024434089660645,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.013269470073282719,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.814897298812866,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.01163567416369915,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.853396415710449,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.011129403486847878,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.8798186779022217,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.011933285742998123,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.8234798908233643,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.013377312570810318,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.8552844524383545,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.011400080285966396,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.9409127235412598,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.011178918182849884,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.880861520767212,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.013041479513049126,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.8637871742248535,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.012902776710689068,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.9051785469055176,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.01097793783992529,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.8485116958618164,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.01198726985603571,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.833984851837158,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.012412553653120995,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.835758686065674,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.011381368152797222,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.7852823734283447,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.010742254555225372,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.9635236263275146,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.010208575055003166,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.9532880783081055,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.010875599458813667,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.923335075378418,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.010645967908203602,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.9628233909606934,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.009820123203098774,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 4.036235809326172,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.010748740285634995,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.8888001441955566,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.010759779252111912,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.888763427734375,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.010816200636327267,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.9231839179992676,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.010659001767635345,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.751230239868164,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.010139607824385166,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.8911890983581543,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.010190426371991634,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.9361610412597656,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.01053356472402811,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.820432186126709,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.010453339666128159,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.9013843536376953,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.010975971817970276,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.941499710083008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.011470776982605457,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.9472250938415527,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.01132800243794918,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.934760570526123,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.010188699699938297,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.940852642059326,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.011588476598262787,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.881300687789917,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.011445710435509682,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.8878631591796875,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.010066111572086811,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 4.051698684692383,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.011515095829963684,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.937252998352051,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.012769580818712711,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.898301601409912,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.01235460489988327,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.820993661880493,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.010864713229238987,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.741528272628784,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.011177250184118748,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.958587646484375,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.011447126977145672,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.8475422859191895,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.011529373936355114,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.847842216491699,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.010466120205819607,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.8615760803222656,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.010162622667849064,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.910557270050049,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.010626879520714283,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.9372987747192383,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.010526949539780617,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 4.033852577209473,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.010240721516311169,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.9674649238586426,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.010456124320626259,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.978588581085205,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.010770171880722046,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.975640058517456,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.010375156067311764,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.970576763153076,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.009781519882380962,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.9403347969055176,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.010984783992171288,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.817472457885742,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.012089774943888187,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.994081974029541,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.603480815887451,
+ "eval_runtime": 84.8833,
+ "eval_samples_per_second": 28.769,
+ "eval_steps_per_second": 1.802,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.011733257211744785,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.9356606006622314,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.01330010499805212,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.8383421897888184,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.012003310024738312,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.8812572956085205,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.0123556824401021,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.8535850048065186,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.01161467470228672,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.929421901702881,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.012014579959213734,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.7582807540893555,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.01118547935038805,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.9876742362976074,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.011344132013618946,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.864891529083252,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.01170346885919571,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.817432403564453,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.011647871695458889,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.89971923828125,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.011546367779374123,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.90244722366333,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.011550342664122581,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.809117317199707,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.011258913204073906,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.905025005340576,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.011282610706984997,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.779602527618408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.011639866046607494,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.9670777320861816,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.010768581181764603,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.958116054534912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.0109172398224473,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.8190770149230957,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.011898413300514221,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.856595039367676,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.011432542465627193,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.7329049110412598,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.01097177155315876,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.955566167831421,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.011556052602827549,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.804487705230713,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.01179601065814495,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.781385898590088,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.011609538458287716,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.9597253799438477,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.010918320156633854,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.884592056274414,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.01119279209524393,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.835721492767334,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.010532518848776817,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.9814205169677734,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.011080932803452015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.8226406574249268,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.010538287460803986,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 4.029593467712402,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.011465945281088352,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.960726261138916,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.0108618950471282,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.8980398178100586,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.010339999571442604,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.983405113220215,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.010117891244590282,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.9767355918884277,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.010386128909885883,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.9415929317474365,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.010351025499403477,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.794034719467163,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.010884677991271019,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.9224600791931152,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.010773873887956142,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.882521390914917,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.010557166300714016,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.8566958904266357,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.010536021552979946,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 4.0177226066589355,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.010782448574900627,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.9123826026916504,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.012259316630661488,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.9082179069519043,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.012442185543477535,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.935253620147705,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.011048306711018085,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.8191399574279785,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.01034141331911087,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.956024646759033,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.011038210242986679,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.8852219581604004,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.011482541449368,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.8552491664886475,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.010966906324028969,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.9505701065063477,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.010703622363507748,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.8711719512939453,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.010880622081458569,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.874210834503174,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.011435945518314838,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.8634233474731445,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.011190537363290787,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.834467649459839,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.00980424229055643,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.851818084716797,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.010341738350689411,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.9530246257781982,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.009817896410822868,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.9131112098693848,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.01047087088227272,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.817899703979492,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.010247116908431053,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.935760974884033,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.010032808408141136,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.9065394401550293,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.009959318675100803,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.9358553886413574,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.010545285418629646,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.9537429809570312,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.010459063574671745,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.868861198425293,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.009678610600531101,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.9771389961242676,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.010761966928839684,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.923041343688965,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.010677576065063477,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.9786107540130615,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.010676741600036621,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.8509178161621094,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.01141789648681879,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.9142541885375977,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.010593809187412262,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.9438939094543457,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.010112748481333256,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.7702059745788574,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.010748161002993584,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.838205337524414,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.010649033822119236,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.751556396484375,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.010314499028027058,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.9019546508789062,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.010986926965415478,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.820539951324463,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.010041169822216034,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.8246195316314697,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.012162555009126663,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.962362766265869,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.629899978637695,
+ "eval_runtime": 85.481,
+ "eval_samples_per_second": 28.568,
+ "eval_steps_per_second": 1.79,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.011511481367051601,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.815683364868164,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.012574407272040844,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.7753467559814453,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.012173766270279884,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.8002219200134277,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.01307229045778513,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.6498148441314697,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.011586854234337807,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.723379611968994,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.011305336840450764,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.8636040687561035,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.010770306922495365,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.863016128540039,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.01125170849263668,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.881840705871582,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.012030471116304398,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.8817765712738037,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.011889533139765263,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.8045623302459717,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.0123107535764575,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.8879432678222656,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.011461477726697922,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.77366304397583,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.011112198233604431,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.8331174850463867,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.011280504986643791,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.9428482055664062,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.01064289454370737,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.8866519927978516,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.010694642551243305,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.9101250171661377,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.01199188269674778,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.7445998191833496,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.010890398174524307,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.880009651184082,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.010986912995576859,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.858964204788208,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.012368667870759964,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.866872787475586,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.012999574653804302,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.869506359100342,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.0119540486484766,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.8895955085754395,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.011919611133635044,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.8713624477386475,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.010563733987510204,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.854360580444336,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.01088758185505867,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.9863433837890625,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.011296373791992664,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.728609561920166,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.011117997579276562,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.900608539581299,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.010690092109143734,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.773066282272339,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.011517496779561043,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.908097743988037,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.011297475546598434,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.785518169403076,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.011774522252380848,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.951240301132202,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.010511872358620167,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.898623466491699,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.01159161888062954,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.7450759410858154,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.012622535228729248,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.8740897178649902,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.01106981374323368,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.7869417667388916,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.010965615510940552,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.7341647148132324,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.011208019219338894,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.9084837436676025,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.010710948146879673,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.9404633045196533,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.010723879560828209,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.8540186882019043,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.011042962782084942,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.84421706199646,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.011002677492797375,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.8881781101226807,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.012812180444598198,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.8858859539031982,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.011376631446182728,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.768159866333008,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.010488759726285934,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.8189263343811035,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.010805865749716759,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.807474374771118,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.010717516764998436,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.8457653522491455,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.011142940260469913,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.9563636779785156,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.01116760354489088,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.745244264602661,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.010558689013123512,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.842268228530884,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.01111495029181242,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.7646007537841797,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.011153158731758595,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.875667095184326,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.01162844430655241,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.8176357746124268,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.010929273441433907,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.8745524883270264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.010437211021780968,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.801875114440918,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.011714253574609756,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.8457753658294678,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.01128415297716856,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.849414348602295,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.0105520598590374,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.8638744354248047,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.010928453877568245,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.7805519104003906,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.01154544297605753,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.8063130378723145,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.010886175557971,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.8018932342529297,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.010635017417371273,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.790377616882324,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.010519898496568203,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.983368396759033,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.011441218666732311,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.7907943725585938,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.01221360545605421,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.765820026397705,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.010830710642039776,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 4.003534317016602,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.01135318074375391,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.8551559448242188,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.014823293313384056,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.9815213680267334,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.013025115244090557,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.924241304397583,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.0101553276181221,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 4.0723443031311035,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.012571720406413078,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.8909096717834473,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.013566468842327595,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.8996996879577637,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.014272765256464481,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.8539466857910156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.620414733886719,
+ "eval_runtime": 85.2434,
+ "eval_samples_per_second": 28.647,
+ "eval_steps_per_second": 1.795,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.012074367143213749,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.8410253524780273,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.014286254532635212,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.7875261306762695,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.017569642513990402,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.8226816654205322,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.016590511426329613,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.938128709793091,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.012882485054433346,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.7010138034820557,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.014531395398080349,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.7836709022521973,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.015781082212924957,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.8485186100006104,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.015504764392971992,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.7098755836486816,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.012655007652938366,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.8346376419067383,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.01290210336446762,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.769796848297119,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.015385285019874573,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.861654758453369,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.01429051160812378,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.8049275875091553,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.01214558631181717,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.853189468383789,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.015257023274898529,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.8485867977142334,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.01401588972657919,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.742671251296997,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.011879785917699337,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.802128314971924,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.012397093698382378,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.7346596717834473,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.01456447597593069,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.776618480682373,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.014282099902629852,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.673670530319214,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.011789718642830849,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.8645644187927246,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.014003564603626728,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.8703198432922363,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.013203601352870464,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.832751989364624,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.011776245199143887,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.697592258453369,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.011362370103597641,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.6604275703430176,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.011934771202504635,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.849954128265381,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.011321560479700565,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.8939003944396973,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.011278622783720493,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.80043888092041,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.011219988577067852,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.72088623046875,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.011986256577074528,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.853048801422119,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.010439028032124043,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 4.006741046905518,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.010670551098883152,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.8120055198669434,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.010852249339222908,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.7261171340942383,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.011269894428551197,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.717071533203125,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.010703012347221375,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.8839147090911865,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.01081076730042696,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.789668560028076,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.01119368989020586,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.7824530601501465,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.010503538884222507,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.9010872840881348,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.010646075941622257,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.7963762283325195,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.010476659052073956,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.815866708755493,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.010914883576333523,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.7410686016082764,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.010305505245923996,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.832772731781006,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.010710855014622211,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.941805839538574,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.010200196877121925,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.8245506286621094,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.01110541820526123,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.721076488494873,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.010649279691278934,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.9620189666748047,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.011666350066661835,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.718165874481201,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.010778360068798065,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.8721981048583984,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.012113813310861588,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.6971333026885986,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.011371941305696964,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.82936954498291,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.011019962839782238,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.854365825653076,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.011195488274097443,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.876722812652588,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.011133303865790367,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.854990243911743,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.010802343487739563,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.8632092475891113,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.010828115046024323,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.7351198196411133,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.010700947605073452,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.86088228225708,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.010590414516627789,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.8715527057647705,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.011087710037827492,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.8589677810668945,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.011460598558187485,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.822814464569092,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.010769214481115341,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.8802614212036133,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.010772728361189365,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.7555761337280273,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.011214488185942173,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.8383407592773438,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.010878588072955608,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.7413854598999023,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.010260067880153656,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.800255060195923,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.010783256031572819,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.7339282035827637,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.010300736874341965,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.9011282920837402,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.01050292793661356,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.8408572673797607,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.010419820435345173,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.929624557495117,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.010534441098570824,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.8389062881469727,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.009849554859101772,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.973883628845215,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.009878809563815594,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.9080922603607178,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.010315601713955402,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.710033655166626,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.012090682983398438,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.914968490600586,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.6000237464904785,
+ "eval_runtime": 84.3949,
+ "eval_samples_per_second": 28.935,
+ "eval_steps_per_second": 1.813,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.01098595466464758,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.8293018341064453,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.012146810069680214,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.6914591789245605,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.012144665233790874,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.672290802001953,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.010488035157322884,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.752763271331787,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.011291133239865303,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.8085179328918457,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.011676127091050148,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.7776341438293457,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.011975069530308247,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.7317285537719727,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.011667255312204361,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.7061963081359863,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.012225139886140823,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.856548309326172,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.011574016883969307,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.844625473022461,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.011139079928398132,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.746826171875,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.011695715598762035,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.7915165424346924,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.011564397253096104,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.849781036376953,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.010902253910899162,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.8721957206726074,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.01267972681671381,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.7196736335754395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.011358649469912052,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.919512987136841,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.011036410927772522,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.8114471435546875,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.011998327448964119,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.8243329524993896,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.011142533272504807,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.8639392852783203,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.010713535360991955,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.769162178039551,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.011486412025988102,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.7145237922668457,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.013365180231630802,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.6966552734375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.012505118735134602,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.7208471298217773,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.010776310227811337,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.8106448650360107,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.013044707477092743,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.643601894378662,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.013414500281214714,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.742617607116699,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.012324818409979343,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.9633641242980957,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.011112147942185402,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.7014031410217285,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.011222519911825657,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.7302393913269043,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.011425459757447243,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.6111724376678467,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.011259129270911217,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.6706461906433105,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.011032751761376858,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.8024699687957764,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.010749325156211853,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.8828892707824707,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.011131943203508854,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.851710319519043,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.010242550633847713,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.858922004699707,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.011025975458323956,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.830212116241455,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.011354555375874043,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.8487133979797363,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.011285083368420601,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.7806899547576904,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.009995102882385254,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.825943946838379,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.011260299943387508,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.7661871910095215,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.010885214433073997,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.728891372680664,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.010914749465882778,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.651210069656372,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.010972256772220135,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.880051612854004,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.011609644629061222,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.792019844055176,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.01076072920113802,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.759305715560913,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.011043784208595753,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.7739481925964355,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.010551003739237785,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.892974853515625,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.010709116235375404,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.97403883934021,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.011284755542874336,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.682202100753784,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.011439262889325619,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.817227363586426,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.010503373108804226,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.696104049682617,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.010913492180407047,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.717217206954956,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.010813022963702679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.9186856746673584,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.010504172183573246,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.706868886947632,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.010735583491623402,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.803366184234619,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.010751239955425262,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.7577362060546875,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.01045430451631546,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.824903964996338,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.010554700158536434,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.803471803665161,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.010459354147315025,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.828946828842163,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.010894916951656342,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.8558573722839355,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.010433739051222801,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.858416795730591,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.010902623645961285,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.7386794090270996,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.010467786341905594,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.8269565105438232,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.01069339644163847,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.7873644828796387,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.010542310774326324,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.7905020713806152,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.010565508157014847,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.841482162475586,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.010608013719320297,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.776552677154541,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.010551434010267258,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.815901279449463,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.011121736839413643,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.759938955307007,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.01168640237301588,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.6711742877960205,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.010713277384638786,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.8046345710754395,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.01274355873465538,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.8205442428588867,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.653851509094238,
+ "eval_runtime": 84.413,
+ "eval_samples_per_second": 28.929,
+ "eval_steps_per_second": 1.813,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.011835121549665928,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.8538994789123535,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.012358210980892181,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.68070387840271,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.010982801206409931,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.7115354537963867,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.011809226125478745,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.733523368835449,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.012028186582028866,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.8103458881378174,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.011706877499818802,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.8124942779541016,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.013214824721217155,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.7883641719818115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.011493456549942493,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.7750420570373535,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.010648688301444054,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.8362419605255127,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.011935052461922169,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.705594539642334,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.010910818353295326,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.7417006492614746,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.011039982549846172,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.7649331092834473,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.011560715734958649,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.787877082824707,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.010883931070566177,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.7402868270874023,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.011613317765295506,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.6596624851226807,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.010946841910481453,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.8373587131500244,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.011364697478711605,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.835782051086426,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.010879823006689548,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.884202718734741,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.011060351505875587,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.8537373542785645,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.01056839432567358,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.7272658348083496,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.010968873277306557,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.8164658546447754,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.010696220211684704,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.824345588684082,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.010746701620519161,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.7690653800964355,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.010833295062184334,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.7120180130004883,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.010505889542400837,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.863776445388794,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.010879415087401867,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.8087613582611084,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.010765374638140202,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.7535347938537598,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.010739347897469997,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.7427191734313965,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.011077574454247952,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.8276665210723877,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.010721394792199135,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.8159728050231934,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.01090798620134592,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.8832767009735107,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.010897727683186531,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.834407329559326,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.011375446803867817,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.816559076309204,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.012578863650560379,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.8119935989379883,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.010998054407536983,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.7607805728912354,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.010973364114761353,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.8520750999450684,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.012247582897543907,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.7228598594665527,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.011055019684135914,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.8229427337646484,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.011345181614160538,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.7088441848754883,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.010623784735798836,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.842665672302246,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.011510200798511505,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.7346155643463135,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.01085889432579279,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.9091005325317383,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.011483512818813324,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.6774628162384033,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.01169754657894373,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.805418014526367,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.010753422044217587,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.8417539596557617,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.010333525948226452,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.940634250640869,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.011270534247159958,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.8078689575195312,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.010964984074234962,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.5973827838897705,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.011286620981991291,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.827928066253662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.010751689784228802,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.790165424346924,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.01152054313570261,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.8387513160705566,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.011646322906017303,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.822841167449951,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.011617179028689861,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.8654866218566895,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.010603098198771477,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.724824905395508,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.01164249423891306,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.8022966384887695,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.011870439164340496,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.839895009994507,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.011322998441755772,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.81400728225708,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.011069455184042454,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.7506797313690186,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.012023651972413063,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.862222671508789,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.010537683963775635,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.828303337097168,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.011298646219074726,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.828731060028076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.011739256791770458,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.810626745223999,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.010453609749674797,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.7593984603881836,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.011474397033452988,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.7422327995300293,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.01103881374001503,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.761174201965332,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.01095945481210947,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.726083755493164,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.010641214437782764,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.7877697944641113,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.010943214409053326,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.672283411026001,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.010196125134825706,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.801036834716797,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.010735539719462395,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.7579617500305176,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.010973691008985043,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.720263957977295,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.012658403255045414,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.834487199783325,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.622317314147949,
+ "eval_runtime": 85.6075,
+ "eval_samples_per_second": 28.526,
+ "eval_steps_per_second": 1.787,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.012221621349453926,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.7627463340759277,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.013135075569152832,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.7844247817993164,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.013170014135539532,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.818237781524658,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.011589646339416504,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.8020315170288086,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.01251091156154871,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.7725701332092285,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.012891864404082298,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.770443916320801,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.011410247534513474,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.7357795238494873,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.011896900832653046,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.8181862831115723,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.013186860829591751,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.8368823528289795,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.011350966058671474,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.865201711654663,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.011509046889841557,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.8134939670562744,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.012778270058333874,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.7049672603607178,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.011080496944487095,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.585240602493286,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.011986466124653816,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.5464162826538086,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.01239814329892397,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.869504928588867,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.010922676883637905,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.689619541168213,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.011846546083688736,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.718783378601074,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.0132194384932518,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.7223048210144043,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.011813106946647167,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.72087025642395,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.011289218440651894,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.744448184967041,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.012738044373691082,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.7712485790252686,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.011673792265355587,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.772463798522949,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.010565067641437054,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.8961498737335205,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.012948057614266872,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.784403085708618,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.01291747111827135,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.9311203956604004,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.010577475652098656,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.8164238929748535,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.01205415278673172,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.7477498054504395,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.013052346184849739,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.6452393531799316,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.010738392360508442,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.863175392150879,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.011833506636321545,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.6790335178375244,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.012708249501883984,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.7472329139709473,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.011452332139015198,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.795750379562378,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.011169432662427425,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.7254080772399902,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.011717136017978191,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.824097156524658,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.01113469060510397,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.804236888885498,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.012446170672774315,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.771315097808838,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.011456575244665146,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.7870168685913086,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.01099369116127491,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.7555341720581055,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.01148857269436121,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.718329429626465,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.011267481371760368,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.795982837677002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.010826817713677883,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.8777594566345215,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.012914626859128475,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.780271053314209,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.011905672028660774,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.667747974395752,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.010853438638150692,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.8123393058776855,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.01198440883308649,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.669010639190674,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.011725930497050285,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.690924644470215,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.011250975541770458,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.8481712341308594,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.012081993743777275,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.836412191390991,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.011358530260622501,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.714931011199951,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.011656605638563633,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.779855251312256,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.011361461132764816,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.750562906265259,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.01111642736941576,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.677558422088623,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.011434067972004414,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.8261594772338867,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.01109747588634491,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.7544002532958984,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.01116955280303955,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.8112525939941406,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.011463560163974762,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.823795795440674,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.010840185917913914,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.7840795516967773,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.011257193982601166,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.8014907836914062,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.010883461683988571,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.934812068939209,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.011461238376796246,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.7989964485168457,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.010654035955667496,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.813706398010254,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.010837544687092304,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.849246025085449,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.011188001371920109,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.7655930519104004,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.010620510205626488,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.8499178886413574,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.01100193802267313,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.802701473236084,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.011393132619559765,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.6669745445251465,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.009844624437391758,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.820718288421631,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.010924831964075565,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.7869009971618652,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.010494636371731758,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.790957450866699,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.010310249403119087,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.8752992153167725,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.010647440329194069,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.8087809085845947,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.012783640995621681,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.764528512954712,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.643893241882324,
+ "eval_runtime": 84.3251,
+ "eval_samples_per_second": 28.959,
+ "eval_steps_per_second": 1.814,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.012959420680999756,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 3.8086109161376953,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.013563459739089012,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 3.6965975761413574,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.011980905197560787,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 3.711778163909912,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.011871901340782642,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 3.6733522415161133,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.012937705032527447,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 3.7733635902404785,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.011714889667928219,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 3.728959798812866,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.013666588813066483,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 3.6072607040405273,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.013764542527496815,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 3.5575504302978516,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.012109178118407726,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 3.5769667625427246,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.013473691418766975,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 3.680962324142456,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.01379619911313057,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 3.757096529006958,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.011314289644360542,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 3.76945161819458,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.013036033138632774,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 3.7243385314941406,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.014120346866548061,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 3.632735013961792,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.011118597351014614,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 3.738640308380127,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.013166938908398151,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 3.748673677444458,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.014428527094423771,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 3.6997504234313965,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.011080035008490086,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 3.6520442962646484,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.014199669472873211,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 3.713841438293457,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.013674831949174404,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 3.7265865802764893,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.011398992501199245,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 3.7864127159118652,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.013014162890613079,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 3.808335781097412,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.013607821427285671,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 3.7590603828430176,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.011284386739134789,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 3.852957248687744,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.0124812675639987,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 3.690640926361084,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.012215296737849712,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 3.7401716709136963,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.011153114959597588,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 3.6022608280181885,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.011128322221338749,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 3.76261043548584,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.011405743658542633,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 3.7317919731140137,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.010796097107231617,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 3.7927498817443848,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.011359430849552155,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 3.7940726280212402,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.010661331936717033,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 3.696272373199463,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.010808812454342842,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 3.935020923614502,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.011492723599076271,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 3.793449640274048,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.010726522654294968,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 3.823009967803955,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.012037855572998524,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 3.6274938583374023,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.010546860285103321,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 3.7414891719818115,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.011701563373208046,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 3.697719097137451,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.01202841941267252,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 3.726900577545166,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.010880138725042343,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 3.7554526329040527,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.011453451588749886,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 3.754596471786499,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.01151049230247736,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 3.771867036819458,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.010971508920192719,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 3.7297768592834473,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.011703700758516788,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 3.7855639457702637,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.010938476771116257,
+ "learning_rate": 0.000125422220031917,
+ "loss": 3.7032675743103027,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.011303786188364029,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 3.7274818420410156,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.011036397889256477,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 3.7945384979248047,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.010740772821009159,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 3.7876367568969727,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.01077644806355238,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 3.8004746437072754,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.010681649670004845,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 3.7691421508789062,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.01066069956868887,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 3.771846294403076,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.010379420593380928,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 3.8060200214385986,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.010975166223943233,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 3.79958176612854,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.010764715261757374,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 3.717043161392212,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.01078881323337555,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 3.801644802093506,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.010265138000249863,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 3.783195972442627,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.010792591609060764,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 3.8415896892547607,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.010571829974651337,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 3.836528778076172,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.010886797681450844,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 3.700542449951172,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.010580138303339481,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 3.771808624267578,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.011085486970841885,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 3.748702049255371,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.010542228817939758,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 3.720003128051758,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.01025788951665163,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 3.8107736110687256,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.010472859255969524,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 3.761867046356201,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.01006028801202774,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 3.9037365913391113,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.010959411971271038,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 3.6597089767456055,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.010549000464379787,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 3.6739065647125244,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.010526958853006363,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 3.715498924255371,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.010918751358985901,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.7726211547851562,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.010232404805719852,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.816497325897217,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.010697577148675919,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 3.713224411010742,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.012965346686542034,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 3.6997082233428955,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.655182838439941,
+ "eval_runtime": 85.2245,
+ "eval_samples_per_second": 28.654,
+ "eval_steps_per_second": 1.795,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.01170173566788435,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 3.676013946533203,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.012074579484760761,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 3.671389102935791,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.010872588492929935,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 3.7682933807373047,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.012460839934647083,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 3.6640148162841797,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.011374551802873611,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 3.5511608123779297,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.012543464079499245,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 3.707737445831299,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.012159660458564758,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 3.8008790016174316,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.011233200319111347,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 3.69169545173645,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.011677992530167103,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 3.63594388961792,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.011566423811018467,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 3.681525468826294,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.01078653521835804,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 3.739337205886841,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.01217108778655529,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 3.6421661376953125,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.010930873453617096,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 3.748523235321045,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.011151740327477455,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 3.753802537918091,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.012875067070126534,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 3.6623620986938477,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.011753715574741364,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 3.727081775665283,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.011851518414914608,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 3.6371452808380127,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.011906645260751247,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 3.8166069984436035,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.011639812029898167,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 3.6870737075805664,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.011572390794754028,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 3.7846291065216064,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.011138715781271458,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 3.780052661895752,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.012126869522035122,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 3.6294097900390625,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.01124672219157219,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 3.601348876953125,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.011345062404870987,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 3.802715539932251,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.01185676921159029,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 3.7901811599731445,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.010895371437072754,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 3.7976598739624023,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.012236456386744976,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 3.638669490814209,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.01074462104588747,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 3.8074564933776855,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.011451425030827522,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 3.8096084594726562,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.010895966552197933,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 3.770529270172119,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.011214354075491428,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 3.669459819793701,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.011040736921131611,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 3.6421093940734863,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.011235068552196026,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 3.717794895172119,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.010692991316318512,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 3.837008476257324,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.010941149666905403,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 3.8316516876220703,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.010738505981862545,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 3.7896690368652344,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.011439068242907524,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 3.7064857482910156,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.010909919627010822,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 3.6063177585601807,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.010811230167746544,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 3.7572851181030273,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.011699718423187733,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 3.7057502269744873,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.010557346977293491,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 3.7413482666015625,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.012217458337545395,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 3.68583345413208,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.011844443157315254,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 3.672800064086914,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.010863780975341797,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 3.8191466331481934,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.011684334836900234,
+ "learning_rate": 0.000110418175419276,
+ "loss": 3.816007375717163,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.010890254750847816,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 3.669980525970459,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.010885228402912617,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 3.7669625282287598,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.010626623407006264,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 3.8925986289978027,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.0104477284476161,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 3.702505350112915,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.010862227529287338,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 3.7865467071533203,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.010828044265508652,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 3.7201313972473145,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.011225244030356407,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 3.6084065437316895,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.010682853870093822,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 3.8278732299804688,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.011466807685792446,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 3.7215189933776855,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.010362178087234497,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 3.904291868209839,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.010957669466733932,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 3.778188705444336,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.010585121810436249,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 3.6741180419921875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.011203119531273842,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 3.6816086769104004,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.010951190255582333,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 3.7051103115081787,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.011283005587756634,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 3.7492308616638184,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.010675647296011448,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 3.757633686065674,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.011540205217897892,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 3.7467308044433594,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.010912961326539516,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 3.7003517150878906,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.0114189013838768,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 3.7336697578430176,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.011332034133374691,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 3.718954563140869,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.010548744350671768,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 3.759291172027588,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.011118164286017418,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 3.70505428314209,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.010609764605760574,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 3.84796142578125,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.011173306033015251,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 3.6996655464172363,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.010832463391125202,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 3.725262403488159,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.010700349695980549,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 3.718334436416626,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.01289756502956152,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 3.704533100128174,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.693915367126465,
+ "eval_runtime": 85.31,
+ "eval_samples_per_second": 28.625,
+ "eval_steps_per_second": 1.793,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.011198977939784527,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 3.6982197761535645,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.012199430726468563,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 3.7857213020324707,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.012049948796629906,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 3.6798291206359863,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.011377546936273575,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 3.640404462814331,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.012638721615076065,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 3.749448299407959,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.01160160731524229,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 3.7944140434265137,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.011627585627138615,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 3.648456335067749,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.011439858004450798,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 3.720679759979248,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.011306632310152054,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 3.708101272583008,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.01244926918298006,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 3.6416754722595215,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.011299839243292809,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 3.6820151805877686,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.011271092109382153,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 3.632664680480957,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.011228576302528381,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 3.6773757934570312,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.011157537810504436,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 3.688231945037842,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.011199907399713993,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 3.7428293228149414,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.010619419626891613,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 3.7390031814575195,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.011098803021013737,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 3.6182665824890137,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.01111474446952343,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 3.699374198913574,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.011336212046444416,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 3.676906108856201,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.011283556930720806,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 3.6507439613342285,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.010850561782717705,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 3.8105974197387695,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.011408800259232521,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 3.760531425476074,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.010755250230431557,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 3.7775449752807617,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.010943734087049961,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 3.733713150024414,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.011332372203469276,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 3.6487903594970703,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.011002120561897755,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 3.741724967956543,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.010813242755830288,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 3.7981441020965576,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.011091019958257675,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 3.7716856002807617,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.010958508588373661,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 3.5713768005371094,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.010796858929097652,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 3.8373794555664062,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.010614383034408092,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 3.8736562728881836,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.011410286650061607,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 3.6740145683288574,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.011398029513657093,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 3.581528663635254,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.01076753530651331,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 3.770960807800293,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.011508522555232048,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 3.609501600265503,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.01123715564608574,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 3.73911714553833,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.01137506403028965,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 3.7328197956085205,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.011042161844670773,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 3.74168062210083,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.010899839922785759,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 3.768195152282715,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.010904601775109768,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 3.7806577682495117,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.01097328495234251,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 3.7549877166748047,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.011439703404903412,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 3.72983455657959,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.010535117238759995,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 3.7976064682006836,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.011130924336612225,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 3.7822225093841553,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.01120290532708168,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 3.5806386470794678,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.010762058198451996,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 3.6654231548309326,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.01086795050650835,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 3.6761934757232666,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.010754890739917755,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 3.711052894592285,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.010603540576994419,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 3.735914945602417,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.01082628034055233,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 3.7499945163726807,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.010752163827419281,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 3.7164082527160645,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.01059526763856411,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 3.790992021560669,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.011081925593316555,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 3.6938629150390625,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.010565798729658127,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 3.7721762657165527,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.011132346466183662,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 3.6816294193267822,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.010373701341450214,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 3.6214842796325684,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.011445647105574608,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 3.696721076965332,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.01062934473156929,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 3.794649124145508,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.010760935954749584,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 3.847841262817383,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.010981135070323944,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 3.806766986846924,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.010613447986543179,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 3.8057641983032227,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.01062733493745327,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 3.812392473220825,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.01053095143288374,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 3.8165760040283203,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.010590441524982452,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 3.750246286392212,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.010535027831792831,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 3.6753740310668945,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.01089025940746069,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 3.646995782852173,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.010809162631630898,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 3.600886821746826,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.0106975007802248,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 3.7091875076293945,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.011214018799364567,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 3.703693389892578,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.010956529527902603,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 3.755434513092041,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.010600938461720943,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 3.653496503829956,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.013423817232251167,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 3.720472812652588,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.70236349105835,
+ "eval_runtime": 84.2528,
+ "eval_samples_per_second": 28.984,
+ "eval_steps_per_second": 1.816,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.011171610094606876,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 3.7004337310791016,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.012332933023571968,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 3.7265610694885254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.011277936398983002,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 3.601111888885498,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.013066980056464672,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 3.656167507171631,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.011609097942709923,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 3.6531968116760254,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.011375260539352894,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 3.8449621200561523,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.01188904233276844,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 3.639618396759033,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.011385303921997547,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 3.607211112976074,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.012061718851327896,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 3.759932518005371,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.011797578074038029,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 3.651660919189453,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.010990801267325878,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 3.754148006439209,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.011108523234724998,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 3.737645149230957,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.01116233505308628,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 3.6953439712524414,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.01158575527369976,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 3.7638463973999023,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.010980706661939621,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 3.669271469116211,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.011257216334342957,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 3.5535852909088135,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.0113073093816638,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 3.6486611366271973,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.010872259736061096,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 3.724148750305176,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.011464682407677174,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 3.6188430786132812,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.011032741516828537,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 3.7590906620025635,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.011746014468371868,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 3.654430866241455,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.01034239400178194,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 3.743414878845215,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.010861272923648357,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 3.690239906311035,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.010557636618614197,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 3.673034191131592,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.011031560599803925,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 3.6802845001220703,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.011244124732911587,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 3.739335536956787,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.011239913292229176,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 3.581887722015381,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.011029187589883804,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 3.617955207824707,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.011090870946645737,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 3.7086760997772217,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.010879257693886757,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 3.6402206420898438,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.011360609903931618,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 3.5563437938690186,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.010615409351885319,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 3.635526657104492,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.010841797105967999,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 3.696800708770752,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.010706157423555851,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 3.643747091293335,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.010727638378739357,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 3.713442087173462,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.011199980974197388,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 3.6075096130371094,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.010633513331413269,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 3.586681365966797,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.011111010797321796,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 3.5740785598754883,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.010320307686924934,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 3.73391056060791,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.011368511244654655,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 3.765704393386841,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.010887169279158115,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 3.700038433074951,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.011458968743681908,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 3.5883827209472656,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.010733275674283504,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 3.6688318252563477,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.010741052217781544,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 3.8183670043945312,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.010705577209591866,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 3.8047947883605957,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.010786568745970726,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 3.5870020389556885,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.01068600732833147,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 3.7506484985351562,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.01106525119394064,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 3.6020455360412598,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.010966303758323193,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 3.6486215591430664,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.010402275249361992,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 3.6864218711853027,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.010643420740962029,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 3.751906633377075,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.010683218948543072,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 3.6216816902160645,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.01069771870970726,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 3.7787914276123047,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.010822269134223461,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 3.690450668334961,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.010331728495657444,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 3.7027666568756104,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.010398197919130325,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 3.892603874206543,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.010359621606767178,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 3.705939769744873,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.01045959535986185,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 3.7312638759613037,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.010584887117147446,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 3.670193672180176,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.010751177556812763,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 3.611891746520996,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.010396091267466545,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 3.7198853492736816,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.010508151724934578,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 3.735065460205078,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.010515174828469753,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 3.8035366535186768,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.010779086500406265,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 3.6760854721069336,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.010542825795710087,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 3.6713409423828125,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.01065896824002266,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 3.873026132583618,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.010974416509270668,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 3.7147278785705566,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.011038513854146004,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 3.7224650382995605,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.010644898749887943,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 3.702504873275757,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.010861898772418499,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 3.7112412452697754,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.010449038818478584,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 3.7420992851257324,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.01367289386689663,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 3.643402576446533,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.72266960144043,
+ "eval_runtime": 84.9593,
+ "eval_samples_per_second": 28.743,
+ "eval_steps_per_second": 1.801,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.010939717292785645,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 3.748684883117676,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.011713317595422268,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 3.6275434494018555,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.01116150338202715,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 3.5442216396331787,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.01154260989278555,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 3.6425576210021973,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.011184405535459518,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 3.5456011295318604,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.011234240606427193,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 3.7824273109436035,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.011259308084845543,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 3.6412172317504883,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.011159202083945274,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 3.5693745613098145,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.011330717243254185,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 3.682805061340332,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.010699311271309853,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 3.680925130844116,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.01110282726585865,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 3.8039631843566895,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.010918982326984406,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 3.6593871116638184,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.010844809003174305,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 3.7600345611572266,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.011000516824424267,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 3.6694464683532715,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.011035950854420662,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 3.5916249752044678,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.010822792537510395,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 3.634279727935791,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.011248702183365822,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 3.6544113159179688,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.010976427234709263,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 3.6925296783447266,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.011404191143810749,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 3.6901931762695312,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.011057614348828793,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 3.589061737060547,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.011979247443377972,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 3.545525312423706,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.01113880518823862,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 3.722064971923828,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.010881622321903706,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 3.6964316368103027,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.011353516951203346,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 3.591859817504883,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.010664490982890129,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 3.690751552581787,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.011506730690598488,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 3.5863499641418457,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.010956885293126106,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 3.67307710647583,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.010817206464707851,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 3.6958117485046387,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.010806583799421787,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 3.5831050872802734,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.011475218459963799,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 3.809819221496582,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.010781338438391685,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 3.6346025466918945,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.010865557007491589,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 3.685185670852661,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.01063030306249857,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 3.698793888092041,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.010609522461891174,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 3.678513765335083,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.010794652625918388,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 3.6209487915039062,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.010213074274361134,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 3.6966776847839355,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.010727807879447937,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 3.7263050079345703,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.010472957044839859,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 3.6380600929260254,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.010353927500545979,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 3.7395386695861816,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.010614934377372265,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 3.714156150817871,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.010265447199344635,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 3.77215576171875,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.010563590563833714,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 3.6018381118774414,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.01068996824324131,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 3.692389726638794,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.01082534994930029,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 3.6294357776641846,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.010683944448828697,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 3.6320314407348633,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.010798857547342777,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 3.5980758666992188,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.010519741103053093,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 3.6558797359466553,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.01038867887109518,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 3.7643513679504395,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.01050296239554882,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 3.67952823638916,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.010359375737607479,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 3.753803014755249,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.010457335971295834,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 3.778233289718628,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.01047473307698965,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 3.605391263961792,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.01057284977287054,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 3.7074832916259766,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.010335509665310383,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 3.669400215148926,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.010604656301438808,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 3.6579153537750244,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.010402156971395016,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 3.6991233825683594,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.010328474454581738,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 3.7142724990844727,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.010589631274342537,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 3.6590285301208496,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.010586787015199661,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 3.715052843093872,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.01054228376597166,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 3.567382335662842,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.010599953122437,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 3.6226325035095215,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.010479569435119629,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 3.746243476867676,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.010413583368062973,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 3.639831781387329,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.010693448595702648,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 3.6095170974731445,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.010380701161921024,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 3.6874170303344727,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.010398137383162975,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 3.6677775382995605,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.010463608428835869,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 3.7340478897094727,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.01051968615502119,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 3.5982718467712402,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.010627644136548042,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 3.6890177726745605,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.010458312928676605,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 3.639946937561035,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.010449914261698723,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 3.6510815620422363,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.013585928827524185,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 3.541651487350464,
+ "step": 2880
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.2273091675265434e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-2880/training_args.bin b/runs/i5-exp-lm/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-3240/chat_template.jinja b/runs/i5-exp-lm/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-3240/config.json b/runs/i5-exp-lm/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-3240/generation_config.json b/runs/i5-exp-lm/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-3240/model.safetensors b/runs/i5-exp-lm/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..8ea7c2827c2a3473e10266053a34ca0e7da16e5b
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4ed3d8f50353fea023ab1a063367a795134ce148596a2f344dbf09877cfa805b
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-3240/optimizer.pt b/runs/i5-exp-lm/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e7f039e0a85b6042990ef83d39b7dd170629277b
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c5a41faa6d6814b4e48b3c3441b06a89a8a89dad5180bfc6a2fcb1c9d7c0392e
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-3240/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..a939f4c6c9ad315aaa4b75c143539e929b525f45
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:91bbb0e773f7c046c031879d63d00430291924819832ae04a75e1ad0d1928b30
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-3240/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..a44559cebf54da2b60904c1b4706be1cd7999268
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:74f0eeb1c8541ab7f9f2fbcc7c81f16e93cf7648922bc51934def17b0f76fb48
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-3240/scheduler.pt b/runs/i5-exp-lm/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..84479f3138d6041f59e136173e080a0ddbdf81b1
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1045dafc67457b916f466f6a7399234fef3fce01fc96958c0e146dea7784e901
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-3240/tokenizer.json b/runs/i5-exp-lm/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-3240/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-3240/trainer_state.json b/runs/i5-exp-lm/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..8a5fb050b34bf18e7728343d5743907535b68852
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/trainer_state.json
@@ -0,0 +1,23066 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 45.0,
+ "eval_steps": 500,
+ "global_step": 3240,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.551431655883789,
+ "eval_runtime": 85.7406,
+ "eval_samples_per_second": 28.481,
+ "eval_steps_per_second": 1.784,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.009876579977571964,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 4.164706230163574,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.012572702020406723,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 4.014013767242432,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.01369260810315609,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 4.120209693908691,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.014534002169966698,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 4.229783058166504,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.015219368040561676,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 4.105164527893066,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.015543874353170395,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 4.066263198852539,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.0142653938382864,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 4.1460795402526855,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.014713063836097717,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 4.139624118804932,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.014000465162098408,
+ "learning_rate": 0.000407857329622967,
+ "loss": 4.002811908721924,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.013888941146433353,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 4.17318058013916,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.014635670930147171,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 4.152536392211914,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.015171809121966362,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 4.1005167961120605,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.01345653086900711,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 4.135690689086914,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.013164847157895565,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 4.149524211883545,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.013102286495268345,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 4.193521499633789,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.011267323978245258,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 4.1657867431640625,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.011742684058845043,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 4.1137213706970215,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.01192871481180191,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 4.260440826416016,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.013026650995016098,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 4.185743808746338,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.013810441829264164,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 4.054473400115967,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.011503677815198898,
+ "learning_rate": 0.000404858275823277,
+ "loss": 4.185676574707031,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.01065174862742424,
+ "learning_rate": 0.000404607816444578,
+ "loss": 4.013198375701904,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.011239566840231419,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 4.118226528167725,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.012186541222035885,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 4.185783863067627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.01248143333941698,
+ "learning_rate": 0.000403855947934478,
+ "loss": 4.125214099884033,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.012454871088266373,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 4.112842559814453,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.012563669122755527,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 4.154864311218262,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.012546264566481113,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 4.123438835144043,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.01277274452149868,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 4.163538932800293,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.011936571449041367,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 4.101528167724609,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.01149666029959917,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 4.040679931640625,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.01097810547798872,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 4.136455535888672,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.009719183668494225,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 4.041109085083008,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.00986333005130291,
+ "learning_rate": 0.000401595976318565,
+ "loss": 4.124299049377441,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.00912073440849781,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 4.199904441833496,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.009418101981282234,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 4.151755332946777,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.009513386525213718,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 4.254427909851074,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.009743732400238514,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 4.140321731567383,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.00963711366057396,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 4.124331474304199,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.010302593000233173,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 4.132112979888916,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.011983472853899002,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 4.160226821899414,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.012036876752972603,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 4.095509052276611,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.01125854067504406,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 4.117288589477539,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.011722338385879993,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 4.193219184875488,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.012395180761814117,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 4.120162487030029,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.011256304569542408,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 4.083768367767334,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.01025543361902237,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 4.049867630004883,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.010927550494670868,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 4.256014823913574,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.011399165727198124,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 4.091549396514893,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.010450828820466995,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 4.204381942749023,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.011282199062407017,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 4.153038501739502,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.010513713583350182,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 4.108619213104248,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.010266946628689766,
+ "learning_rate": 0.000396803974909638,
+ "loss": 4.169204235076904,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.010166850872337818,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 4.096996307373047,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.01009226031601429,
+ "learning_rate": 0.000396297942393265,
+ "loss": 4.104363441467285,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.010323838330805302,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 4.194367408752441,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.01049391832202673,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 4.116766929626465,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.011563598178327084,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 4.131492614746094,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.011230280622839928,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 4.169009685516357,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.009461907669901848,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 4.137299060821533,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.010689560323953629,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 4.214145660400391,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.011656688526272774,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 4.166624069213867,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.011863510124385357,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 4.131100177764893,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.010448232293128967,
+ "learning_rate": 0.000394017098798633,
+ "loss": 4.101202964782715,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.010062103159725666,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 4.161185264587402,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.01093286368995905,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 4.042693138122559,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.010100377723574638,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 4.060758113861084,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.010339124128222466,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 4.20787239074707,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.010003306902945042,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 4.067782402038574,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.010493419133126736,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 4.125699996948242,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.010171142406761646,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 4.1621246337890625,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.011140113696455956,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 4.237761497497559,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.567854881286621,
+ "eval_runtime": 84.4609,
+ "eval_samples_per_second": 28.913,
+ "eval_steps_per_second": 1.811,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.01077568531036377,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 4.181587219238281,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.01187620684504509,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 4.131726264953613,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.013522771187126637,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 4.122220993041992,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.013684876263141632,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 4.041871070861816,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.013173004612326622,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.970202922821045,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.012073843739926815,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.8631794452667236,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.01288041565567255,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 4.006192207336426,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.013644886203110218,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 4.2370381355285645,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.013753894716501236,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.9589552879333496,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.012465177103877068,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 4.035869598388672,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.011406811885535717,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 4.080760955810547,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.012969305738806725,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 4.074190139770508,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.013275290839374065,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 4.067647933959961,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.01310755591839552,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 4.096287250518799,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.012664602138102055,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.9706339836120605,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.010615247301757336,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 4.117854118347168,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.01068687904626131,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 4.052369117736816,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.011366557329893112,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 4.138422966003418,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.011061202734708786,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 4.126469612121582,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.011635071597993374,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.968297004699707,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.011073353700339794,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 4.075834274291992,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.011658500880002975,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 4.061251640319824,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.012086226604878902,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 4.1972856521606445,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.012222395278513432,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 4.097524642944336,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.011842718347907066,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 4.149069786071777,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.011621825397014618,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 4.0996832847595215,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.010307750664651394,
+ "learning_rate": 0.00038509205478744,
+ "loss": 4.089378356933594,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.009588676504790783,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 4.066476821899414,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.010809775441884995,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 4.19119930267334,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.012743748724460602,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 4.0750932693481445,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.011777926236391068,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 4.044826507568359,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.010044556111097336,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 4.1896867752075195,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.011860032565891743,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 4.092286109924316,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.012056638486683369,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 4.116976737976074,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.011735365726053715,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 4.148249626159668,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.010875556617975235,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 4.195129871368408,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.010493649169802666,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 4.163764476776123,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.010560980066657066,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 4.122279644012451,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.010246366262435913,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 4.1063714027404785,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.00991209875792265,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 4.08073616027832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.009893461130559444,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 4.134050369262695,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.009423932991921902,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 4.193440914154053,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.00842279102653265,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 4.058138847351074,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.00924934446811676,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 4.018709182739258,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.009752786718308926,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 4.012757778167725,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.009239202365279198,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 4.1526408195495605,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.009407109580934048,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 4.116143226623535,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.009414082393050194,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 4.100341796875,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.009516751393675804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 4.085671424865723,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.008972907438874245,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 4.1414794921875,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.009903272613883018,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.919322967529297,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.010267534293234348,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 4.123221397399902,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.011000022292137146,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 4.159793376922607,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.012496626935899258,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 4.062358379364014,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.012963531538844109,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 4.136105537414551,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.01102963276207447,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 4.005084037780762,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.010507521219551563,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 4.038727760314941,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.010605179704725742,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 4.083990097045898,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.010178995318710804,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 4.0194501876831055,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.011055036447942257,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 4.088884353637695,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.00979774259030819,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 4.078244209289551,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.00978800468146801,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 4.1270880699157715,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.009614141657948494,
+ "learning_rate": 0.000375827577564042,
+ "loss": 4.101253509521484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.009357909671962261,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 4.099915027618408,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.009440246038138866,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 4.164741039276123,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.008768280036747456,
+ "learning_rate": 0.000375051971546236,
+ "loss": 4.124988079071045,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.009859531186521053,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 4.220903396606445,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.010455301962792873,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 4.152346611022949,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.009803061373531818,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 4.048665523529053,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.009574026800692081,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 4.0821943283081055,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.009048961102962494,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 4.041666507720947,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.010180778801441193,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 4.200588703155518,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.604552745819092,
+ "eval_runtime": 84.8713,
+ "eval_samples_per_second": 28.773,
+ "eval_steps_per_second": 1.803,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.011329853907227516,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.9900457859039307,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.014984005130827427,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 4.07473611831665,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.016141744330525398,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.9724981784820557,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.01465766504406929,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.9986071586608887,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.015666628256440163,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 4.071915626525879,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.014640172012150288,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 4.036019325256348,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.01469016820192337,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 4.05607271194458,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.014554283581674099,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 4.129990577697754,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.014493918046355247,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 4.062219619750977,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.014379715546965599,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 4.062480926513672,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.013458595611155033,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.9154977798461914,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.012699708342552185,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.9537384510040283,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.011132895946502686,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 4.0615739822387695,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.011430074460804462,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 4.143531799316406,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.01210040133446455,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 4.012790679931641,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.012245144695043564,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 4.106157302856445,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.012887321412563324,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 4.015830993652344,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.012803677469491959,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 4.1782965660095215,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.011368817649781704,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 4.072640419006348,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.010358075611293316,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 4.098837852478027,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.010589832440018654,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 4.117313861846924,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.010321256704628468,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 4.218641757965088,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.011689630337059498,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.9875400066375732,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.010908936150372028,
+ "learning_rate": 0.000367268105959126,
+ "loss": 4.027227401733398,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.010584350675344467,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 4.10093879699707,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.01010285597294569,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 4.074665546417236,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.011812037788331509,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 4.034531593322754,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.011600959114730358,
+ "learning_rate": 0.000366226612810024,
+ "loss": 4.113184928894043,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.010876321233808994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 4.070537567138672,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.009968291968107224,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 4.203442096710205,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.011262387968599796,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 4.0556769371032715,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.01032582949846983,
+ "learning_rate": 0.000365184304613104,
+ "loss": 4.08148193359375,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.010996437631547451,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 4.057895660400391,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.010615769773721695,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 4.124999046325684,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.010909738019108772,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 4.031045913696289,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.010457244701683521,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 4.011176109313965,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.010345135815441608,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 4.030368328094482,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.00980544276535511,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 4.110050678253174,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.009972338564693928,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 4.00167179107666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.010071652941405773,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.9824132919311523,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.010037647560238838,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 4.027332305908203,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.010439334437251091,
+ "learning_rate": 0.000362575056487632,
+ "loss": 4.065634727478027,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.009809018112719059,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 4.128786563873291,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.009842394851148129,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 4.052270889282227,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.00916555617004633,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 4.145816326141357,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.00887344591319561,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 4.095729827880859,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.009776724502444267,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 4.113144397735596,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.009635286405682564,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.942356586456299,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.009097062051296234,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 4.117036819458008,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.009455705061554909,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 4.096042633056641,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.010677946731448174,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.999386787414551,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.009964345954358578,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 4.168429374694824,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.009584939107298851,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 4.039562225341797,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.009133868850767612,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 4.137625694274902,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.009551159106194973,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 4.130338668823242,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.009856447577476501,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 4.096878528594971,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.009551186114549637,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.99261474609375,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.009219125844538212,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 4.010861396789551,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.00918554700911045,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.981205463409424,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.009746214374899864,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 4.120397567749023,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.010356797836720943,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 4.019916534423828,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.010084329172968864,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 4.065004348754883,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.009301368147134781,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 4.122297763824463,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.009626660495996475,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 4.1999053955078125,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.010422289371490479,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.995299816131592,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.011208872310817242,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 4.0599751472473145,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.010681918822228909,
+ "learning_rate": 0.000356031397755195,
+ "loss": 4.077420711517334,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.01082858256995678,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 4.202306270599365,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.010040241293609142,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 4.226383209228516,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.009776259772479534,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 4.0426506996154785,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.009816191159188747,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 4.10113525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.011430559679865837,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.9381566047668457,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.570052623748779,
+ "eval_runtime": 84.6451,
+ "eval_samples_per_second": 28.85,
+ "eval_steps_per_second": 1.808,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.011132825165987015,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 4.0361833572387695,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.012743635103106499,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.924943685531616,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.013857677578926086,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.922771453857422,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.014101691544055939,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 4.15196418762207,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.014825007878243923,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 4.034111976623535,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.01563287526369095,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.931384563446045,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.014393665827810764,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.886596202850342,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.013301689177751541,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 4.0370354652404785,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.012488034553825855,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 4.0232696533203125,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.011063582263886929,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.981332302093506,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.012320222333073616,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.9484620094299316,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.011997769586741924,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 4.041739463806152,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.011553142219781876,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 4.001791954040527,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.011633829213678837,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.917846202850342,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.011593331582844257,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 4.075129508972168,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.011368625797331333,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 4.026906967163086,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.010605502873659134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 4.071677207946777,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.010172054171562195,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.945216655731201,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.010856307111680508,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.971095323562622,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.009842454455792904,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 4.060256481170654,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.010291303507983685,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.9854986667633057,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.009987153112888336,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 4.0489726066589355,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.010083730332553387,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.998929023742676,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.010800480842590332,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 4.100696086883545,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.010760601609945297,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.942884922027588,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.011136551387608051,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 4.020368576049805,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.01087525486946106,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.970954418182373,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.010280475951731205,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 4.104029655456543,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.010815252549946308,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 4.010892391204834,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.010867281816899776,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 4.0223493576049805,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.010291614569723606,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.979717254638672,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.009741781279444695,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 4.018221855163574,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.011015533469617367,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 4.026700973510742,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.010466188192367554,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 4.101867198944092,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.01033122930675745,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 4.045816898345947,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.010766522027552128,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.996644973754883,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.010843119584023952,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.97576642036438,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.012119865044951439,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.882136821746826,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.012413941323757172,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 4.005892753601074,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.011253178119659424,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 4.066131591796875,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.009961821138858795,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 4.015138626098633,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.010008499026298523,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 4.022852897644043,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.010745653882622719,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.9275522232055664,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.010398740880191326,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 4.0531721115112305,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.01038513332605362,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 4.061971664428711,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.009928431361913681,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 4.143259048461914,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.010413208045065403,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 4.061119556427002,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.01139519177377224,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 4.09278678894043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.011986100114881992,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.947401523590088,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.011387983337044716,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 4.068734169006348,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.009954501874744892,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 4.070131778717041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.00955903809517622,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.9322071075439453,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.010283265262842178,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.9960098266601562,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.010511606931686401,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.9909510612487793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.009582840837538242,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 4.079389572143555,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.00974298920482397,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 4.138494491577148,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.010466743260622025,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 4.056201457977295,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.010316438972949982,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 4.099299907684326,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.010122894309461117,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 4.239686965942383,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.009907642379403114,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.9789676666259766,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.01069258525967598,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 4.041545391082764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.01007404737174511,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 4.071598052978516,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.009585035033524036,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.9430413246154785,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.010451397858560085,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 4.13792085647583,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.011326397769153118,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.914581775665283,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.011229630559682846,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.9398770332336426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.009682882577180862,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 4.08770227432251,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.009850278496742249,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 4.091458797454834,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.010133294388651848,
+ "learning_rate": 0.000336518346307424,
+ "loss": 4.060453414916992,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.011278501711785793,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 4.080122947692871,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.011924702674150467,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 4.161231994628906,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.013833330944180489,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.9359490871429443,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.596139907836914,
+ "eval_runtime": 86.0775,
+ "eval_samples_per_second": 28.37,
+ "eval_steps_per_second": 1.777,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.013592035509645939,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.9522242546081543,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.013502624817192554,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 4.0113677978515625,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.013949453830718994,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.9946117401123047,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.014419623650610447,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.9795098304748535,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.01568395458161831,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 4.091269493103027,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.015030908398330212,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 4.062928676605225,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.013131589628756046,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 4.0576863288879395,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.013200934045016766,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.9778010845184326,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.013214852660894394,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 4.0181884765625,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.012748941779136658,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.8231043815612793,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.011799106374382973,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 4.045605659484863,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.011282660067081451,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.9676876068115234,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.0109232347458601,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.9386894702911377,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.011680151335895061,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.960446357727051,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.011029785498976707,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 4.071208477020264,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.010873311199247837,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.910928249359131,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.010651886463165283,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 4.041978359222412,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.010444678366184235,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 4.054442405700684,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.010614353232085705,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 4.05772590637207,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.01047259010374546,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.873579502105713,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.009985635057091713,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.993783712387085,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.010010694153606892,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.984926223754883,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.010369695723056793,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 4.085610389709473,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.010580260306596756,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.949125289916992,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.01043667085468769,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.9963903427124023,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.010741197504103184,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 4.053349018096924,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.010334794409573078,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 4.120090007781982,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.01040970254689455,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.8926737308502197,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.010715796612203121,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.9743237495422363,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.011393639259040356,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.98507022857666,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.010942629538476467,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.898818016052246,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.010325280018150806,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.8614513874053955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.010317712090909481,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.939861297607422,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.010228334926068783,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 4.04915189743042,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.010809719562530518,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 4.05153751373291,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.010143210180103779,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 4.1973876953125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.010687801986932755,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.9684720039367676,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.013338417746126652,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 4.0303544998168945,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.014791577123105526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 4.093402862548828,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.013393090106546879,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 4.098799228668213,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.012639272026717663,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.9800333976745605,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.011467873118817806,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 4.151701927185059,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.011315679177641869,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 4.113883972167969,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.011210434138774872,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.9912962913513184,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.01087957713752985,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.967313766479492,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.011848476715385914,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.978968620300293,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.011160468682646751,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 4.03514289855957,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.009814568795263767,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 4.026996612548828,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.009992859326303005,
+ "learning_rate": 0.000322712903929477,
+ "loss": 4.024201393127441,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.010100461542606354,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.955676555633545,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.009547922760248184,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.937321662902832,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.010318727232515812,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 4.056231498718262,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.009653892368078232,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 4.024428844451904,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.009993361309170723,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.950716018676758,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.01103970780968666,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.945801258087158,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.011700308881700039,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.9194111824035645,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.012860790826380253,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 4.030028343200684,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.011987055651843548,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.90966796875,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.010467334650456905,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.9390382766723633,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.010487129911780357,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.9514942169189453,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.010463234037160873,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 4.016255855560303,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.01121378131210804,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 4.002895355224609,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.010914308950304985,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 4.018136024475098,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.010348659940063953,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 4.03448486328125,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.009568385779857635,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 4.069923400878906,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.009966057725250721,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.914461135864258,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.00994907971471548,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.971266269683838,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.009441893547773361,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 4.057741165161133,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.009497676976025105,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 4.140096664428711,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.010003750212490559,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 4.040005207061768,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.009717513807117939,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 4.030487537384033,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.011040066368877888,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 4.065431594848633,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.603287696838379,
+ "eval_runtime": 85.8724,
+ "eval_samples_per_second": 28.438,
+ "eval_steps_per_second": 1.782,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.011107868514955044,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 4.011427402496338,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.014340977184474468,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.8326802253723145,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.014210023917257786,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 4.009984016418457,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.013904218561947346,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 4.116009712219238,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.014743667095899582,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.8629159927368164,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.013711526058614254,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.9335215091705322,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.013057132251560688,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.908352851867676,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.012818509712815285,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.9947872161865234,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.012549753300845623,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.8811845779418945,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.01136186346411705,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.978353261947632,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.011574970558285713,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.9344143867492676,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.011323983781039715,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.9808664321899414,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.010912686586380005,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 4.017498016357422,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.010812945663928986,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.88407039642334,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.01065861713141203,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.9926493167877197,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.01069044228643179,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 4.0090131759643555,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.010497510433197021,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.935544967651367,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.011448034085333347,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.99393892288208,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.011814731173217297,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.996981620788574,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.012805991806089878,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.990048408508301,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.013853369280695915,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.8463478088378906,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.014118191786110401,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.9070587158203125,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.012672449462115765,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 4.021424293518066,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.011798200197517872,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.965221881866455,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.011141994036734104,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.83060622215271,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.011542421765625477,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.9407637119293213,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.014908739365637302,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 4.01406717300415,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.014702459797263145,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 4.043688774108887,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.011113990098237991,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 4.042995929718018,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.011973917484283447,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.917491912841797,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.014942649751901627,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.9875829219818115,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.014178650453686714,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 4.054706573486328,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.012302055023610592,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.929983615875244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.01186611969023943,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.945169687271118,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.011537456884980202,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 4.049633026123047,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.011318233795464039,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.926973342895508,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.010335283353924751,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.977968692779541,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.010157988406717777,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 4.040463447570801,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.010198986157774925,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.876478433609009,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.011112391017377377,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.9707107543945312,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.011649145744740963,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 4.014248847961426,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.011027307249605656,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.9882264137268066,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.010242706164717674,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.8625729084014893,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.009813128970563412,
+ "learning_rate": 0.000304866093757771,
+ "loss": 4.065174102783203,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.010923790745437145,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 4.07213830947876,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.01187705434858799,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 4.038900375366211,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.011698390357196331,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.950251579284668,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.010257775895297527,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 4.068069934844971,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.010501123033463955,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.9558424949645996,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.011701171286404133,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.968338966369629,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.012152766808867455,
+ "learning_rate": 0.000303,
+ "loss": 4.086882591247559,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.011028476059436798,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.9539551734924316,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.011379408650100231,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.8860912322998047,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.010008374229073524,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 4.095733642578125,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.011070288717746735,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.9810352325439453,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.012155449017882347,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.969482898712158,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.01056651584804058,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 4.042746543884277,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.010865111835300922,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.9409804344177246,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.010306884534657001,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 4.078839302062988,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.00993148609995842,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 4.047484397888184,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.009858231991529465,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.974020004272461,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.009922944940626621,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.9741368293762207,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.010188239626586437,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.920858860015869,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.009717893786728382,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 4.0424394607543945,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.009679177775979042,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 4.004914283752441,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.010174429975450039,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.975625991821289,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.010131667368113995,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.902825355529785,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.009707369841635227,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 4.042960166931152,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.009920211508870125,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.966573476791382,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.009672066196799278,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.93103289604187,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.010291875340044498,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.9984607696533203,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.011761458590626717,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 4.043583869934082,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.599700450897217,
+ "eval_runtime": 87.3222,
+ "eval_samples_per_second": 27.965,
+ "eval_steps_per_second": 1.752,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.011074044741690159,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.9737820625305176,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.01350400224328041,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.9737653732299805,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.015932954847812653,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.939518451690674,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.013929862529039383,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.8696722984313965,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.010929702781140804,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.791276454925537,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.010906493291258812,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.995974063873291,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.011713053099811077,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.8848793506622314,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.011010564863681793,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.9641356468200684,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.010945162735879421,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.9572525024414062,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.0103533286601305,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.9543161392211914,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.011024084873497486,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.909083843231201,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.011396311223506927,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.903420925140381,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.009475707076489925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 4.0093092918396,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.010503377765417099,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.8529200553894043,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.011094511486589909,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.9325509071350098,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.010803001001477242,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.8839521408081055,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.010747581720352173,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 4.001172065734863,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.0103462478145957,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.8773140907287598,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.010612964630126953,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.7979984283447266,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.011453553102910519,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 4.045482635498047,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.011249526403844357,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 4.061059474945068,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.01041093748062849,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.913604259490967,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.010158784687519073,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.876260280609131,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.01079870481044054,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.841350555419922,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.01098064798861742,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.9297823905944824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.01065402664244175,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 4.0244903564453125,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.010416185483336449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.90169095993042,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.010907797142863274,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.9648971557617188,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.01072609331458807,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.910158157348633,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.010549080558121204,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.8769569396972656,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.012598100118339062,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.861464500427246,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.011794711463153362,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.894925117492676,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.011026293970644474,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.969573497772217,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.010959511622786522,
+ "learning_rate": 0.000288343693342466,
+ "loss": 4.111845970153809,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.011551665142178535,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 4.003201961517334,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.012172834947705269,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.964582920074463,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.013538642786443233,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 4.052495002746582,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.014221726916730404,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.9965338706970215,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.012400173582136631,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 4.001407623291016,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.01180094014853239,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.856201410293579,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.011389389634132385,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.9924964904785156,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.0107188755646348,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 4.04386043548584,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.010961013846099377,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.9631590843200684,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.010923122987151146,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.953301191329956,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.01061448734253645,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.9261679649353027,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.010924954898655415,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.9537997245788574,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.01066056452691555,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.9342002868652344,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.009984925389289856,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.988720417022705,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.010581002570688725,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.970776081085205,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.011563191190361977,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.966728925704956,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.010714497417211533,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.9598939418792725,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.011376265436410904,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.8844943046569824,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.011425293982028961,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.8499813079833984,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.01086503267288208,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.8147051334381104,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.010077040642499924,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 4.017036437988281,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.010627911426126957,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.9156417846679688,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.010287647135555744,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.9441888332366943,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.01014758087694645,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 4.044958591461182,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.011006060056388378,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.797041893005371,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.011467166244983673,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.9570345878601074,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.010885256342589855,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.7906641960144043,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.010804297402501106,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.971190929412842,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.011160610243678093,
+ "learning_rate": 0.000280627938758204,
+ "loss": 4.060389518737793,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.009990973398089409,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.917522430419922,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.00998917780816555,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 4.013736248016357,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.011042946018278599,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.799297332763672,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.010925267823040485,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.94362211227417,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.011051100678741932,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 4.001194953918457,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.010502695105969906,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 4.134047508239746,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.010572216473519802,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.9747796058654785,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.010007299482822418,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 4.044950485229492,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.011629229411482811,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 4.084447860717773,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.588645935058594,
+ "eval_runtime": 85.4714,
+ "eval_samples_per_second": 28.571,
+ "eval_steps_per_second": 1.79,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.011689464561641216,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.9075310230255127,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.014014136046171188,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 4.014795303344727,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.011509428732097149,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.9163098335266113,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.01121868658810854,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.9568498134613037,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.011642883531749249,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.9395787715911865,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.011057519353926182,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.8263654708862305,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.010972758755087852,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.9097914695739746,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.010745537467300892,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.854860544204712,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.011182599700987339,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 4.041356563568115,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.012797663919627666,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.830272912979126,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.012043065391480923,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.8452553749084473,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.013106790371239185,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.8310980796813965,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.013427415862679482,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.9251890182495117,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.013122874312102795,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.957672119140625,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.012872692197561264,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.878587245941162,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.011384270153939724,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.854142665863037,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.011137540452182293,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.9605469703674316,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.011310633271932602,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.940114974975586,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.01179711427539587,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.938386917114258,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.011187809519469738,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.944530487060547,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.011170677840709686,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.9430172443389893,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.010550163686275482,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.7957606315612793,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.010384478606283665,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.9056930541992188,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.010651282034814358,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.8139357566833496,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.0107306819409132,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 4.003175735473633,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.011411326937377453,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.919771432876587,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.01133117638528347,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.9188013076782227,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.01031514909118414,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.932736873626709,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.009824352338910103,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 4.015635967254639,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.01049763523042202,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.9969911575317383,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.011549605056643486,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.834160804748535,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.011060566641390324,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.8837857246398926,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.009798712097108364,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.949749231338501,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.010602886788547039,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 4.000707149505615,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.00990439672023058,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.885244131088257,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.009604494087398052,
+ "learning_rate": 0.00026868712586269,
+ "loss": 4.074821472167969,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.009423203766345978,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 4.000557899475098,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.0098728621378541,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.9387454986572266,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.010560811497271061,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 4.009432792663574,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.009980306960642338,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.896604061126709,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.009540977887809277,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.9122257232666016,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.010007701814174652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 4.008612155914307,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.011056117713451385,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 4.038888931274414,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.011715954169631004,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.9493355751037598,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.012441720813512802,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.9336190223693848,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.01239983644336462,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.800154209136963,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.010556857101619244,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.996401309967041,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.010134321637451649,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.9100875854492188,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.010460550896823406,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.892467498779297,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.010920022614300251,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.8093631267547607,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.010078933089971542,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.9534246921539307,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.010934804566204548,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.8959293365478516,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.009791049174964428,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 4.032570838928223,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.009695373475551605,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.872560977935791,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.010239834897220135,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.898049831390381,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.011325928382575512,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 4.000666618347168,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.010393583215773106,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.916602611541748,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.010357106104493141,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 4.027385711669922,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.010646609589457512,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.87898850440979,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.010656338185071945,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.9381659030914307,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.010371637530624866,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.878948211669922,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.010396607220172882,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 4.031810760498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.0101687116548419,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.986933708190918,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.009972655214369297,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.8843746185302734,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.010430166497826576,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.9313480854034424,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.010458354838192463,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.953433036804199,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.009931962937116623,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.991569995880127,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.010947883129119873,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.9206581115722656,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.010655615478754044,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.891333818435669,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.01125908549875021,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.8434605598449707,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.011453676968812943,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.9852113723754883,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.012835046276450157,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.761152744293213,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.577749729156494,
+ "eval_runtime": 86.0183,
+ "eval_samples_per_second": 28.389,
+ "eval_steps_per_second": 1.779,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.011688253842294216,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.9019522666931152,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.013192981481552124,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.897005796432495,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.012870961800217628,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.8835902214050293,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.012850126251578331,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.9463181495666504,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.013198571279644966,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.9062042236328125,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.013023433275520802,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.8452041149139404,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.011843542568385601,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.8098270893096924,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.011327624320983887,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.9676313400268555,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.011951684951782227,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.9325199127197266,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.012988871894776821,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.9741406440734863,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.01474353950470686,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.954935073852539,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.015253514051437378,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.9670064449310303,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.013718944974243641,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.9320693016052246,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.011357603594660759,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.7773828506469727,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.01170849148184061,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.8851189613342285,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.01428207941353321,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.8826663494110107,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.016005778685212135,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.9117560386657715,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.014198106713593006,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.8031065464019775,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.011704663746058941,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.891038417816162,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.010909215547144413,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.8263349533081055,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.012448816560208797,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.9024434089660645,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.013269470073282719,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.814897298812866,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.01163567416369915,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.853396415710449,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.011129403486847878,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.8798186779022217,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.011933285742998123,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.8234798908233643,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.013377312570810318,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.8552844524383545,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.011400080285966396,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.9409127235412598,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.011178918182849884,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.880861520767212,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.013041479513049126,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.8637871742248535,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.012902776710689068,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.9051785469055176,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.01097793783992529,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.8485116958618164,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.01198726985603571,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.833984851837158,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.012412553653120995,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.835758686065674,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.011381368152797222,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.7852823734283447,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.010742254555225372,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.9635236263275146,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.010208575055003166,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.9532880783081055,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.010875599458813667,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.923335075378418,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.010645967908203602,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.9628233909606934,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.009820123203098774,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 4.036235809326172,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.010748740285634995,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.8888001441955566,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.010759779252111912,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.888763427734375,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.010816200636327267,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.9231839179992676,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.010659001767635345,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.751230239868164,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.010139607824385166,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.8911890983581543,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.010190426371991634,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.9361610412597656,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.01053356472402811,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.820432186126709,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.010453339666128159,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.9013843536376953,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.010975971817970276,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.941499710083008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.011470776982605457,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.9472250938415527,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.01132800243794918,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.934760570526123,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.010188699699938297,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.940852642059326,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.011588476598262787,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.881300687789917,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.011445710435509682,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.8878631591796875,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.010066111572086811,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 4.051698684692383,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.011515095829963684,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.937252998352051,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.012769580818712711,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.898301601409912,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.01235460489988327,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.820993661880493,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.010864713229238987,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.741528272628784,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.011177250184118748,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.958587646484375,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.011447126977145672,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.8475422859191895,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.011529373936355114,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.847842216491699,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.010466120205819607,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.8615760803222656,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.010162622667849064,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.910557270050049,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.010626879520714283,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.9372987747192383,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.010526949539780617,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 4.033852577209473,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.010240721516311169,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.9674649238586426,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.010456124320626259,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.978588581085205,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.010770171880722046,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.975640058517456,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.010375156067311764,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.970576763153076,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.009781519882380962,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.9403347969055176,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.010984783992171288,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.817472457885742,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.012089774943888187,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.994081974029541,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.603480815887451,
+ "eval_runtime": 84.8833,
+ "eval_samples_per_second": 28.769,
+ "eval_steps_per_second": 1.802,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.011733257211744785,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.9356606006622314,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.01330010499805212,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.8383421897888184,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.012003310024738312,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.8812572956085205,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.0123556824401021,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.8535850048065186,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.01161467470228672,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.929421901702881,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.012014579959213734,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.7582807540893555,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.01118547935038805,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.9876742362976074,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.011344132013618946,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.864891529083252,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.01170346885919571,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.817432403564453,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.011647871695458889,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.89971923828125,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.011546367779374123,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.90244722366333,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.011550342664122581,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.809117317199707,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.011258913204073906,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.905025005340576,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.011282610706984997,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.779602527618408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.011639866046607494,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.9670777320861816,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.010768581181764603,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.958116054534912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.0109172398224473,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.8190770149230957,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.011898413300514221,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.856595039367676,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.011432542465627193,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.7329049110412598,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.01097177155315876,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.955566167831421,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.011556052602827549,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.804487705230713,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.01179601065814495,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.781385898590088,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.011609538458287716,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.9597253799438477,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.010918320156633854,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.884592056274414,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.01119279209524393,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.835721492767334,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.010532518848776817,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.9814205169677734,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.011080932803452015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.8226406574249268,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.010538287460803986,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 4.029593467712402,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.011465945281088352,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.960726261138916,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.0108618950471282,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.8980398178100586,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.010339999571442604,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.983405113220215,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.010117891244590282,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.9767355918884277,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.010386128909885883,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.9415929317474365,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.010351025499403477,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.794034719467163,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.010884677991271019,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.9224600791931152,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.010773873887956142,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.882521390914917,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.010557166300714016,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.8566958904266357,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.010536021552979946,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 4.0177226066589355,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.010782448574900627,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.9123826026916504,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.012259316630661488,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.9082179069519043,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.012442185543477535,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.935253620147705,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.011048306711018085,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.8191399574279785,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.01034141331911087,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.956024646759033,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.011038210242986679,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.8852219581604004,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.011482541449368,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.8552491664886475,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.010966906324028969,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.9505701065063477,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.010703622363507748,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.8711719512939453,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.010880622081458569,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.874210834503174,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.011435945518314838,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.8634233474731445,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.011190537363290787,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.834467649459839,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.00980424229055643,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.851818084716797,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.010341738350689411,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.9530246257781982,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.009817896410822868,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.9131112098693848,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.01047087088227272,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.817899703979492,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.010247116908431053,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.935760974884033,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.010032808408141136,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.9065394401550293,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.009959318675100803,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.9358553886413574,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.010545285418629646,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.9537429809570312,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.010459063574671745,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.868861198425293,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.009678610600531101,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.9771389961242676,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.010761966928839684,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.923041343688965,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.010677576065063477,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.9786107540130615,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.010676741600036621,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.8509178161621094,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.01141789648681879,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.9142541885375977,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.010593809187412262,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.9438939094543457,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.010112748481333256,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.7702059745788574,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.010748161002993584,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.838205337524414,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.010649033822119236,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.751556396484375,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.010314499028027058,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.9019546508789062,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.010986926965415478,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.820539951324463,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.010041169822216034,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.8246195316314697,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.012162555009126663,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.962362766265869,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.629899978637695,
+ "eval_runtime": 85.481,
+ "eval_samples_per_second": 28.568,
+ "eval_steps_per_second": 1.79,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.011511481367051601,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.815683364868164,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.012574407272040844,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.7753467559814453,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.012173766270279884,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.8002219200134277,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.01307229045778513,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.6498148441314697,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.011586854234337807,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.723379611968994,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.011305336840450764,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.8636040687561035,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.010770306922495365,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.863016128540039,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.01125170849263668,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.881840705871582,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.012030471116304398,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.8817765712738037,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.011889533139765263,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.8045623302459717,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.0123107535764575,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.8879432678222656,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.011461477726697922,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.77366304397583,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.011112198233604431,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.8331174850463867,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.011280504986643791,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.9428482055664062,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.01064289454370737,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.8866519927978516,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.010694642551243305,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.9101250171661377,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.01199188269674778,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.7445998191833496,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.010890398174524307,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.880009651184082,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.010986912995576859,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.858964204788208,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.012368667870759964,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.866872787475586,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.012999574653804302,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.869506359100342,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.0119540486484766,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.8895955085754395,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.011919611133635044,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.8713624477386475,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.010563733987510204,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.854360580444336,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.01088758185505867,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.9863433837890625,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.011296373791992664,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.728609561920166,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.011117997579276562,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.900608539581299,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.010690092109143734,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.773066282272339,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.011517496779561043,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.908097743988037,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.011297475546598434,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.785518169403076,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.011774522252380848,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.951240301132202,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.010511872358620167,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.898623466491699,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.01159161888062954,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.7450759410858154,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.012622535228729248,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.8740897178649902,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.01106981374323368,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.7869417667388916,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.010965615510940552,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.7341647148132324,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.011208019219338894,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.9084837436676025,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.010710948146879673,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.9404633045196533,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.010723879560828209,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.8540186882019043,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.011042962782084942,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.84421706199646,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.011002677492797375,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.8881781101226807,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.012812180444598198,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.8858859539031982,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.011376631446182728,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.768159866333008,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.010488759726285934,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.8189263343811035,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.010805865749716759,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.807474374771118,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.010717516764998436,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.8457653522491455,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.011142940260469913,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.9563636779785156,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.01116760354489088,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.745244264602661,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.010558689013123512,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.842268228530884,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.01111495029181242,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.7646007537841797,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.011153158731758595,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.875667095184326,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.01162844430655241,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.8176357746124268,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.010929273441433907,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.8745524883270264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.010437211021780968,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.801875114440918,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.011714253574609756,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.8457753658294678,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.01128415297716856,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.849414348602295,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.0105520598590374,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.8638744354248047,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.010928453877568245,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.7805519104003906,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.01154544297605753,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.8063130378723145,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.010886175557971,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.8018932342529297,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.010635017417371273,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.790377616882324,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.010519898496568203,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.983368396759033,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.011441218666732311,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.7907943725585938,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.01221360545605421,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.765820026397705,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.010830710642039776,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 4.003534317016602,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.01135318074375391,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.8551559448242188,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.014823293313384056,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.9815213680267334,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.013025115244090557,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.924241304397583,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.0101553276181221,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 4.0723443031311035,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.012571720406413078,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.8909096717834473,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.013566468842327595,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.8996996879577637,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.014272765256464481,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.8539466857910156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.620414733886719,
+ "eval_runtime": 85.2434,
+ "eval_samples_per_second": 28.647,
+ "eval_steps_per_second": 1.795,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.012074367143213749,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.8410253524780273,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.014286254532635212,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.7875261306762695,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.017569642513990402,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.8226816654205322,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.016590511426329613,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.938128709793091,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.012882485054433346,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.7010138034820557,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.014531395398080349,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.7836709022521973,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.015781082212924957,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.8485186100006104,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.015504764392971992,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.7098755836486816,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.012655007652938366,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.8346376419067383,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.01290210336446762,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.769796848297119,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.015385285019874573,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.861654758453369,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.01429051160812378,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.8049275875091553,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.01214558631181717,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.853189468383789,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.015257023274898529,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.8485867977142334,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.01401588972657919,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.742671251296997,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.011879785917699337,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.802128314971924,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.012397093698382378,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.7346596717834473,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.01456447597593069,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.776618480682373,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.014282099902629852,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.673670530319214,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.011789718642830849,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.8645644187927246,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.014003564603626728,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.8703198432922363,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.013203601352870464,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.832751989364624,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.011776245199143887,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.697592258453369,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.011362370103597641,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.6604275703430176,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.011934771202504635,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.849954128265381,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.011321560479700565,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.8939003944396973,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.011278622783720493,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.80043888092041,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.011219988577067852,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.72088623046875,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.011986256577074528,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.853048801422119,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.010439028032124043,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 4.006741046905518,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.010670551098883152,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.8120055198669434,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.010852249339222908,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.7261171340942383,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.011269894428551197,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.717071533203125,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.010703012347221375,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.8839147090911865,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.01081076730042696,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.789668560028076,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.01119368989020586,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.7824530601501465,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.010503538884222507,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.9010872840881348,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.010646075941622257,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.7963762283325195,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.010476659052073956,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.815866708755493,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.010914883576333523,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.7410686016082764,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.010305505245923996,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.832772731781006,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.010710855014622211,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.941805839538574,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.010200196877121925,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.8245506286621094,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.01110541820526123,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.721076488494873,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.010649279691278934,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.9620189666748047,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.011666350066661835,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.718165874481201,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.010778360068798065,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.8721981048583984,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.012113813310861588,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.6971333026885986,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.011371941305696964,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.82936954498291,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.011019962839782238,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.854365825653076,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.011195488274097443,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.876722812652588,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.011133303865790367,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.854990243911743,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.010802343487739563,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.8632092475891113,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.010828115046024323,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.7351198196411133,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.010700947605073452,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.86088228225708,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.010590414516627789,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.8715527057647705,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.011087710037827492,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.8589677810668945,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.011460598558187485,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.822814464569092,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.010769214481115341,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.8802614212036133,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.010772728361189365,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.7555761337280273,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.011214488185942173,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.8383407592773438,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.010878588072955608,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.7413854598999023,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.010260067880153656,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.800255060195923,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.010783256031572819,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.7339282035827637,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.010300736874341965,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.9011282920837402,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.01050292793661356,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.8408572673797607,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.010419820435345173,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.929624557495117,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.010534441098570824,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.8389062881469727,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.009849554859101772,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.973883628845215,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.009878809563815594,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.9080922603607178,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.010315601713955402,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.710033655166626,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.012090682983398438,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.914968490600586,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.6000237464904785,
+ "eval_runtime": 84.3949,
+ "eval_samples_per_second": 28.935,
+ "eval_steps_per_second": 1.813,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.01098595466464758,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.8293018341064453,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.012146810069680214,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.6914591789245605,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.012144665233790874,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.672290802001953,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.010488035157322884,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.752763271331787,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.011291133239865303,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.8085179328918457,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.011676127091050148,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.7776341438293457,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.011975069530308247,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.7317285537719727,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.011667255312204361,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.7061963081359863,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.012225139886140823,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.856548309326172,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.011574016883969307,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.844625473022461,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.011139079928398132,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.746826171875,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.011695715598762035,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.7915165424346924,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.011564397253096104,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.849781036376953,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.010902253910899162,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.8721957206726074,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.01267972681671381,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.7196736335754395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.011358649469912052,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.919512987136841,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.011036410927772522,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.8114471435546875,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.011998327448964119,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.8243329524993896,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.011142533272504807,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.8639392852783203,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.010713535360991955,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.769162178039551,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.011486412025988102,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.7145237922668457,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.013365180231630802,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.6966552734375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.012505118735134602,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.7208471298217773,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.010776310227811337,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.8106448650360107,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.013044707477092743,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.643601894378662,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.013414500281214714,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.742617607116699,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.012324818409979343,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.9633641242980957,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.011112147942185402,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.7014031410217285,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.011222519911825657,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.7302393913269043,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.011425459757447243,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.6111724376678467,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.011259129270911217,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.6706461906433105,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.011032751761376858,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.8024699687957764,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.010749325156211853,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.8828892707824707,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.011131943203508854,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.851710319519043,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.010242550633847713,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.858922004699707,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.011025975458323956,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.830212116241455,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.011354555375874043,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.8487133979797363,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.011285083368420601,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.7806899547576904,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.009995102882385254,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.825943946838379,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.011260299943387508,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.7661871910095215,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.010885214433073997,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.728891372680664,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.010914749465882778,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.651210069656372,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.010972256772220135,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.880051612854004,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.011609644629061222,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.792019844055176,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.01076072920113802,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.759305715560913,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.011043784208595753,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.7739481925964355,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.010551003739237785,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.892974853515625,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.010709116235375404,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.97403883934021,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.011284755542874336,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.682202100753784,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.011439262889325619,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.817227363586426,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.010503373108804226,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.696104049682617,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.010913492180407047,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.717217206954956,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.010813022963702679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.9186856746673584,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.010504172183573246,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.706868886947632,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.010735583491623402,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.803366184234619,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.010751239955425262,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.7577362060546875,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.01045430451631546,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.824903964996338,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.010554700158536434,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.803471803665161,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.010459354147315025,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.828946828842163,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.010894916951656342,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.8558573722839355,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.010433739051222801,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.858416795730591,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.010902623645961285,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.7386794090270996,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.010467786341905594,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.8269565105438232,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.01069339644163847,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.7873644828796387,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.010542310774326324,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.7905020713806152,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.010565508157014847,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.841482162475586,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.010608013719320297,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.776552677154541,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.010551434010267258,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.815901279449463,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.011121736839413643,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.759938955307007,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.01168640237301588,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.6711742877960205,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.010713277384638786,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.8046345710754395,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.01274355873465538,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.8205442428588867,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.653851509094238,
+ "eval_runtime": 84.413,
+ "eval_samples_per_second": 28.929,
+ "eval_steps_per_second": 1.813,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.011835121549665928,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.8538994789123535,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.012358210980892181,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.68070387840271,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.010982801206409931,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.7115354537963867,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.011809226125478745,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.733523368835449,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.012028186582028866,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.8103458881378174,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.011706877499818802,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.8124942779541016,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.013214824721217155,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.7883641719818115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.011493456549942493,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.7750420570373535,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.010648688301444054,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.8362419605255127,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.011935052461922169,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.705594539642334,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.010910818353295326,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.7417006492614746,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.011039982549846172,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.7649331092834473,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.011560715734958649,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.787877082824707,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.010883931070566177,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.7402868270874023,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.011613317765295506,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.6596624851226807,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.010946841910481453,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.8373587131500244,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.011364697478711605,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.835782051086426,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.010879823006689548,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.884202718734741,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.011060351505875587,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.8537373542785645,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.01056839432567358,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.7272658348083496,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.010968873277306557,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.8164658546447754,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.010696220211684704,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.824345588684082,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.010746701620519161,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.7690653800964355,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.010833295062184334,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.7120180130004883,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.010505889542400837,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.863776445388794,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.010879415087401867,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.8087613582611084,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.010765374638140202,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.7535347938537598,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.010739347897469997,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.7427191734313965,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.011077574454247952,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.8276665210723877,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.010721394792199135,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.8159728050231934,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.01090798620134592,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.8832767009735107,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.010897727683186531,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.834407329559326,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.011375446803867817,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.816559076309204,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.012578863650560379,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.8119935989379883,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.010998054407536983,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.7607805728912354,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.010973364114761353,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.8520750999450684,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.012247582897543907,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.7228598594665527,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.011055019684135914,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.8229427337646484,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.011345181614160538,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.7088441848754883,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.010623784735798836,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.842665672302246,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.011510200798511505,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.7346155643463135,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.01085889432579279,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.9091005325317383,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.011483512818813324,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.6774628162384033,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.01169754657894373,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.805418014526367,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.010753422044217587,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.8417539596557617,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.010333525948226452,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.940634250640869,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.011270534247159958,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.8078689575195312,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.010964984074234962,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.5973827838897705,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.011286620981991291,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.827928066253662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.010751689784228802,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.790165424346924,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.01152054313570261,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.8387513160705566,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.011646322906017303,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.822841167449951,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.011617179028689861,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.8654866218566895,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.010603098198771477,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.724824905395508,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.01164249423891306,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.8022966384887695,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.011870439164340496,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.839895009994507,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.011322998441755772,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.81400728225708,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.011069455184042454,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.7506797313690186,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.012023651972413063,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.862222671508789,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.010537683963775635,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.828303337097168,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.011298646219074726,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.828731060028076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.011739256791770458,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.810626745223999,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.010453609749674797,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.7593984603881836,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.011474397033452988,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.7422327995300293,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.01103881374001503,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.761174201965332,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.01095945481210947,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.726083755493164,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.010641214437782764,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.7877697944641113,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.010943214409053326,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.672283411026001,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.010196125134825706,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.801036834716797,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.010735539719462395,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.7579617500305176,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.010973691008985043,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.720263957977295,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.012658403255045414,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.834487199783325,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.622317314147949,
+ "eval_runtime": 85.6075,
+ "eval_samples_per_second": 28.526,
+ "eval_steps_per_second": 1.787,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.012221621349453926,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.7627463340759277,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.013135075569152832,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.7844247817993164,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.013170014135539532,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.818237781524658,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.011589646339416504,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.8020315170288086,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.01251091156154871,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.7725701332092285,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.012891864404082298,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.770443916320801,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.011410247534513474,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.7357795238494873,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.011896900832653046,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.8181862831115723,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.013186860829591751,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.8368823528289795,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.011350966058671474,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.865201711654663,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.011509046889841557,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.8134939670562744,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.012778270058333874,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.7049672603607178,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.011080496944487095,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.585240602493286,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.011986466124653816,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.5464162826538086,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.01239814329892397,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.869504928588867,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.010922676883637905,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.689619541168213,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.011846546083688736,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.718783378601074,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.0132194384932518,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.7223048210144043,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.011813106946647167,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.72087025642395,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.011289218440651894,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.744448184967041,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.012738044373691082,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.7712485790252686,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.011673792265355587,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.772463798522949,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.010565067641437054,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.8961498737335205,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.012948057614266872,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.784403085708618,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.01291747111827135,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.9311203956604004,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.010577475652098656,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.8164238929748535,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.01205415278673172,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.7477498054504395,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.013052346184849739,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.6452393531799316,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.010738392360508442,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.863175392150879,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.011833506636321545,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.6790335178375244,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.012708249501883984,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.7472329139709473,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.011452332139015198,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.795750379562378,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.011169432662427425,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.7254080772399902,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.011717136017978191,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.824097156524658,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.01113469060510397,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.804236888885498,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.012446170672774315,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.771315097808838,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.011456575244665146,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.7870168685913086,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.01099369116127491,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.7555341720581055,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.01148857269436121,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.718329429626465,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.011267481371760368,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.795982837677002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.010826817713677883,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.8777594566345215,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.012914626859128475,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.780271053314209,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.011905672028660774,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.667747974395752,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.010853438638150692,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.8123393058776855,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.01198440883308649,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.669010639190674,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.011725930497050285,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.690924644470215,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.011250975541770458,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.8481712341308594,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.012081993743777275,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.836412191390991,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.011358530260622501,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.714931011199951,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.011656605638563633,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.779855251312256,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.011361461132764816,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.750562906265259,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.01111642736941576,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.677558422088623,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.011434067972004414,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.8261594772338867,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.01109747588634491,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.7544002532958984,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.01116955280303955,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.8112525939941406,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.011463560163974762,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.823795795440674,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.010840185917913914,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.7840795516967773,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.011257193982601166,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.8014907836914062,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.010883461683988571,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.934812068939209,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.011461238376796246,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.7989964485168457,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.010654035955667496,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.813706398010254,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.010837544687092304,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.849246025085449,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.011188001371920109,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.7655930519104004,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.010620510205626488,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.8499178886413574,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.01100193802267313,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.802701473236084,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.011393132619559765,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.6669745445251465,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.009844624437391758,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.820718288421631,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.010924831964075565,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.7869009971618652,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.010494636371731758,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.790957450866699,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.010310249403119087,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.8752992153167725,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.010647440329194069,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.8087809085845947,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.012783640995621681,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.764528512954712,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.643893241882324,
+ "eval_runtime": 84.3251,
+ "eval_samples_per_second": 28.959,
+ "eval_steps_per_second": 1.814,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.012959420680999756,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 3.8086109161376953,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.013563459739089012,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 3.6965975761413574,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.011980905197560787,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 3.711778163909912,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.011871901340782642,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 3.6733522415161133,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.012937705032527447,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 3.7733635902404785,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.011714889667928219,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 3.728959798812866,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.013666588813066483,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 3.6072607040405273,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.013764542527496815,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 3.5575504302978516,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.012109178118407726,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 3.5769667625427246,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.013473691418766975,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 3.680962324142456,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.01379619911313057,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 3.757096529006958,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.011314289644360542,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 3.76945161819458,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.013036033138632774,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 3.7243385314941406,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.014120346866548061,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 3.632735013961792,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.011118597351014614,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 3.738640308380127,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.013166938908398151,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 3.748673677444458,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.014428527094423771,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 3.6997504234313965,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.011080035008490086,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 3.6520442962646484,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.014199669472873211,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 3.713841438293457,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.013674831949174404,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 3.7265865802764893,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.011398992501199245,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 3.7864127159118652,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.013014162890613079,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 3.808335781097412,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.013607821427285671,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 3.7590603828430176,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.011284386739134789,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 3.852957248687744,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.0124812675639987,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 3.690640926361084,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.012215296737849712,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 3.7401716709136963,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.011153114959597588,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 3.6022608280181885,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.011128322221338749,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 3.76261043548584,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.011405743658542633,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 3.7317919731140137,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.010796097107231617,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 3.7927498817443848,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.011359430849552155,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 3.7940726280212402,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.010661331936717033,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 3.696272373199463,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.010808812454342842,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 3.935020923614502,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.011492723599076271,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 3.793449640274048,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.010726522654294968,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 3.823009967803955,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.012037855572998524,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 3.6274938583374023,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.010546860285103321,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 3.7414891719818115,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.011701563373208046,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 3.697719097137451,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.01202841941267252,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 3.726900577545166,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.010880138725042343,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 3.7554526329040527,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.011453451588749886,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 3.754596471786499,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.01151049230247736,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 3.771867036819458,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.010971508920192719,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 3.7297768592834473,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.011703700758516788,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 3.7855639457702637,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.010938476771116257,
+ "learning_rate": 0.000125422220031917,
+ "loss": 3.7032675743103027,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.011303786188364029,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 3.7274818420410156,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.011036397889256477,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 3.7945384979248047,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.010740772821009159,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 3.7876367568969727,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.01077644806355238,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 3.8004746437072754,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.010681649670004845,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 3.7691421508789062,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.01066069956868887,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 3.771846294403076,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.010379420593380928,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 3.8060200214385986,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.010975166223943233,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 3.79958176612854,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.010764715261757374,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 3.717043161392212,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.01078881323337555,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 3.801644802093506,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.010265138000249863,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 3.783195972442627,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.010792591609060764,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 3.8415896892547607,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.010571829974651337,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 3.836528778076172,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.010886797681450844,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 3.700542449951172,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.010580138303339481,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 3.771808624267578,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.011085486970841885,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 3.748702049255371,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.010542228817939758,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 3.720003128051758,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.01025788951665163,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 3.8107736110687256,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.010472859255969524,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 3.761867046356201,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.01006028801202774,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 3.9037365913391113,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.010959411971271038,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 3.6597089767456055,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.010549000464379787,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 3.6739065647125244,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.010526958853006363,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 3.715498924255371,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.010918751358985901,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.7726211547851562,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.010232404805719852,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.816497325897217,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.010697577148675919,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 3.713224411010742,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.012965346686542034,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 3.6997082233428955,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.655182838439941,
+ "eval_runtime": 85.2245,
+ "eval_samples_per_second": 28.654,
+ "eval_steps_per_second": 1.795,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.01170173566788435,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 3.676013946533203,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.012074579484760761,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 3.671389102935791,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.010872588492929935,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 3.7682933807373047,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.012460839934647083,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 3.6640148162841797,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.011374551802873611,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 3.5511608123779297,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.012543464079499245,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 3.707737445831299,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.012159660458564758,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 3.8008790016174316,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.011233200319111347,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 3.69169545173645,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.011677992530167103,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 3.63594388961792,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.011566423811018467,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 3.681525468826294,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.01078653521835804,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 3.739337205886841,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.01217108778655529,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 3.6421661376953125,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.010930873453617096,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 3.748523235321045,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.011151740327477455,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 3.753802537918091,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.012875067070126534,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 3.6623620986938477,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.011753715574741364,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 3.727081775665283,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.011851518414914608,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 3.6371452808380127,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.011906645260751247,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 3.8166069984436035,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.011639812029898167,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 3.6870737075805664,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.011572390794754028,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 3.7846291065216064,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.011138715781271458,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 3.780052661895752,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.012126869522035122,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 3.6294097900390625,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.01124672219157219,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 3.601348876953125,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.011345062404870987,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 3.802715539932251,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.01185676921159029,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 3.7901811599731445,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.010895371437072754,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 3.7976598739624023,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.012236456386744976,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 3.638669490814209,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.01074462104588747,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 3.8074564933776855,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.011451425030827522,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 3.8096084594726562,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.010895966552197933,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 3.770529270172119,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.011214354075491428,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 3.669459819793701,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.011040736921131611,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 3.6421093940734863,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.011235068552196026,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 3.717794895172119,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.010692991316318512,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 3.837008476257324,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.010941149666905403,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 3.8316516876220703,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.010738505981862545,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 3.7896690368652344,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.011439068242907524,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 3.7064857482910156,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.010909919627010822,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 3.6063177585601807,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.010811230167746544,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 3.7572851181030273,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.011699718423187733,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 3.7057502269744873,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.010557346977293491,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 3.7413482666015625,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.012217458337545395,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 3.68583345413208,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.011844443157315254,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 3.672800064086914,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.010863780975341797,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 3.8191466331481934,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.011684334836900234,
+ "learning_rate": 0.000110418175419276,
+ "loss": 3.816007375717163,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.010890254750847816,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 3.669980525970459,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.010885228402912617,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 3.7669625282287598,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.010626623407006264,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 3.8925986289978027,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.0104477284476161,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 3.702505350112915,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.010862227529287338,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 3.7865467071533203,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.010828044265508652,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 3.7201313972473145,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.011225244030356407,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 3.6084065437316895,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.010682853870093822,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 3.8278732299804688,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.011466807685792446,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 3.7215189933776855,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.010362178087234497,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 3.904291868209839,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.010957669466733932,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 3.778188705444336,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.010585121810436249,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 3.6741180419921875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.011203119531273842,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 3.6816086769104004,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.010951190255582333,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 3.7051103115081787,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.011283005587756634,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 3.7492308616638184,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.010675647296011448,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 3.757633686065674,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.011540205217897892,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 3.7467308044433594,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.010912961326539516,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 3.7003517150878906,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.0114189013838768,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 3.7336697578430176,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.011332034133374691,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 3.718954563140869,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.010548744350671768,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 3.759291172027588,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.011118164286017418,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 3.70505428314209,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.010609764605760574,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 3.84796142578125,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.011173306033015251,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 3.6996655464172363,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.010832463391125202,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 3.725262403488159,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.010700349695980549,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 3.718334436416626,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.01289756502956152,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 3.704533100128174,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.693915367126465,
+ "eval_runtime": 85.31,
+ "eval_samples_per_second": 28.625,
+ "eval_steps_per_second": 1.793,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.011198977939784527,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 3.6982197761535645,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.012199430726468563,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 3.7857213020324707,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.012049948796629906,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 3.6798291206359863,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.011377546936273575,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 3.640404462814331,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.012638721615076065,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 3.749448299407959,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.01160160731524229,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 3.7944140434265137,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.011627585627138615,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 3.648456335067749,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.011439858004450798,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 3.720679759979248,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.011306632310152054,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 3.708101272583008,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.01244926918298006,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 3.6416754722595215,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.011299839243292809,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 3.6820151805877686,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.011271092109382153,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 3.632664680480957,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.011228576302528381,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 3.6773757934570312,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.011157537810504436,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 3.688231945037842,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.011199907399713993,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 3.7428293228149414,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.010619419626891613,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 3.7390031814575195,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.011098803021013737,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 3.6182665824890137,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.01111474446952343,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 3.699374198913574,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.011336212046444416,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 3.676906108856201,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.011283556930720806,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 3.6507439613342285,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.010850561782717705,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 3.8105974197387695,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.011408800259232521,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 3.760531425476074,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.010755250230431557,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 3.7775449752807617,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.010943734087049961,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 3.733713150024414,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.011332372203469276,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 3.6487903594970703,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.011002120561897755,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 3.741724967956543,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.010813242755830288,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 3.7981441020965576,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.011091019958257675,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 3.7716856002807617,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.010958508588373661,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 3.5713768005371094,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.010796858929097652,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 3.8373794555664062,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.010614383034408092,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 3.8736562728881836,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.011410286650061607,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 3.6740145683288574,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.011398029513657093,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 3.581528663635254,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.01076753530651331,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 3.770960807800293,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.011508522555232048,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 3.609501600265503,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.01123715564608574,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 3.73911714553833,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.01137506403028965,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 3.7328197956085205,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.011042161844670773,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 3.74168062210083,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.010899839922785759,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 3.768195152282715,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.010904601775109768,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 3.7806577682495117,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.01097328495234251,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 3.7549877166748047,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.011439703404903412,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 3.72983455657959,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.010535117238759995,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 3.7976064682006836,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.011130924336612225,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 3.7822225093841553,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.01120290532708168,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 3.5806386470794678,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.010762058198451996,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 3.6654231548309326,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.01086795050650835,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 3.6761934757232666,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.010754890739917755,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 3.711052894592285,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.010603540576994419,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 3.735914945602417,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.01082628034055233,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 3.7499945163726807,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.010752163827419281,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 3.7164082527160645,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.01059526763856411,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 3.790992021560669,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.011081925593316555,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 3.6938629150390625,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.010565798729658127,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 3.7721762657165527,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.011132346466183662,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 3.6816294193267822,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.010373701341450214,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 3.6214842796325684,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.011445647105574608,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 3.696721076965332,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.01062934473156929,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 3.794649124145508,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.010760935954749584,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 3.847841262817383,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.010981135070323944,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 3.806766986846924,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.010613447986543179,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 3.8057641983032227,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.01062733493745327,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 3.812392473220825,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.01053095143288374,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 3.8165760040283203,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.010590441524982452,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 3.750246286392212,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.010535027831792831,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 3.6753740310668945,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.01089025940746069,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 3.646995782852173,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.010809162631630898,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 3.600886821746826,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.0106975007802248,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 3.7091875076293945,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.011214018799364567,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 3.703693389892578,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.010956529527902603,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 3.755434513092041,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.010600938461720943,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 3.653496503829956,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.013423817232251167,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 3.720472812652588,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.70236349105835,
+ "eval_runtime": 84.2528,
+ "eval_samples_per_second": 28.984,
+ "eval_steps_per_second": 1.816,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.011171610094606876,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 3.7004337310791016,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.012332933023571968,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 3.7265610694885254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.011277936398983002,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 3.601111888885498,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.013066980056464672,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 3.656167507171631,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.011609097942709923,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 3.6531968116760254,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.011375260539352894,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 3.8449621200561523,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.01188904233276844,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 3.639618396759033,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.011385303921997547,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 3.607211112976074,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.012061718851327896,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 3.759932518005371,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.011797578074038029,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 3.651660919189453,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.010990801267325878,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 3.754148006439209,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.011108523234724998,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 3.737645149230957,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.01116233505308628,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 3.6953439712524414,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.01158575527369976,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 3.7638463973999023,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.010980706661939621,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 3.669271469116211,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.011257216334342957,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 3.5535852909088135,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.0113073093816638,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 3.6486611366271973,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.010872259736061096,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 3.724148750305176,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.011464682407677174,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 3.6188430786132812,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.011032741516828537,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 3.7590906620025635,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.011746014468371868,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 3.654430866241455,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.01034239400178194,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 3.743414878845215,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.010861272923648357,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 3.690239906311035,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.010557636618614197,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 3.673034191131592,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.011031560599803925,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 3.6802845001220703,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.011244124732911587,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 3.739335536956787,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.011239913292229176,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 3.581887722015381,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.011029187589883804,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 3.617955207824707,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.011090870946645737,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 3.7086760997772217,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.010879257693886757,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 3.6402206420898438,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.011360609903931618,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 3.5563437938690186,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.010615409351885319,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 3.635526657104492,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.010841797105967999,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 3.696800708770752,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.010706157423555851,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 3.643747091293335,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.010727638378739357,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 3.713442087173462,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.011199980974197388,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 3.6075096130371094,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.010633513331413269,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 3.586681365966797,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.011111010797321796,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 3.5740785598754883,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.010320307686924934,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 3.73391056060791,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.011368511244654655,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 3.765704393386841,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.010887169279158115,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 3.700038433074951,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.011458968743681908,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 3.5883827209472656,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.010733275674283504,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 3.6688318252563477,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.010741052217781544,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 3.8183670043945312,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.010705577209591866,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 3.8047947883605957,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.010786568745970726,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 3.5870020389556885,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.01068600732833147,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 3.7506484985351562,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.01106525119394064,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 3.6020455360412598,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.010966303758323193,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 3.6486215591430664,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.010402275249361992,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 3.6864218711853027,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.010643420740962029,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 3.751906633377075,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.010683218948543072,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 3.6216816902160645,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.01069771870970726,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 3.7787914276123047,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.010822269134223461,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 3.690450668334961,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.010331728495657444,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 3.7027666568756104,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.010398197919130325,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 3.892603874206543,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.010359621606767178,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 3.705939769744873,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.01045959535986185,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 3.7312638759613037,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.010584887117147446,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 3.670193672180176,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.010751177556812763,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 3.611891746520996,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.010396091267466545,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 3.7198853492736816,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.010508151724934578,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 3.735065460205078,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.010515174828469753,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 3.8035366535186768,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.010779086500406265,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 3.6760854721069336,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.010542825795710087,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 3.6713409423828125,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.01065896824002266,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 3.873026132583618,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.010974416509270668,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 3.7147278785705566,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.011038513854146004,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 3.7224650382995605,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.010644898749887943,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 3.702504873275757,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.010861898772418499,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 3.7112412452697754,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.010449038818478584,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 3.7420992851257324,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.01367289386689663,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 3.643402576446533,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.72266960144043,
+ "eval_runtime": 84.9593,
+ "eval_samples_per_second": 28.743,
+ "eval_steps_per_second": 1.801,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.010939717292785645,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 3.748684883117676,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.011713317595422268,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 3.6275434494018555,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.01116150338202715,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 3.5442216396331787,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.01154260989278555,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 3.6425576210021973,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.011184405535459518,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 3.5456011295318604,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.011234240606427193,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 3.7824273109436035,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.011259308084845543,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 3.6412172317504883,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.011159202083945274,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 3.5693745613098145,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.011330717243254185,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 3.682805061340332,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.010699311271309853,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 3.680925130844116,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.01110282726585865,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 3.8039631843566895,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.010918982326984406,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 3.6593871116638184,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.010844809003174305,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 3.7600345611572266,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.011000516824424267,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 3.6694464683532715,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.011035950854420662,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 3.5916249752044678,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.010822792537510395,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 3.634279727935791,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.011248702183365822,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 3.6544113159179688,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.010976427234709263,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 3.6925296783447266,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.011404191143810749,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 3.6901931762695312,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.011057614348828793,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 3.589061737060547,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.011979247443377972,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 3.545525312423706,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.01113880518823862,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 3.722064971923828,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.010881622321903706,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 3.6964316368103027,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.011353516951203346,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 3.591859817504883,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.010664490982890129,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 3.690751552581787,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.011506730690598488,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 3.5863499641418457,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.010956885293126106,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 3.67307710647583,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.010817206464707851,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 3.6958117485046387,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.010806583799421787,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 3.5831050872802734,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.011475218459963799,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 3.809819221496582,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.010781338438391685,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 3.6346025466918945,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.010865557007491589,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 3.685185670852661,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.01063030306249857,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 3.698793888092041,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.010609522461891174,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 3.678513765335083,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.010794652625918388,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 3.6209487915039062,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.010213074274361134,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 3.6966776847839355,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.010727807879447937,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 3.7263050079345703,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.010472957044839859,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 3.6380600929260254,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.010353927500545979,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 3.7395386695861816,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.010614934377372265,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 3.714156150817871,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.010265447199344635,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 3.77215576171875,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.010563590563833714,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 3.6018381118774414,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.01068996824324131,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 3.692389726638794,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.01082534994930029,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 3.6294357776641846,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.010683944448828697,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 3.6320314407348633,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.010798857547342777,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 3.5980758666992188,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.010519741103053093,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 3.6558797359466553,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.01038867887109518,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 3.7643513679504395,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.01050296239554882,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 3.67952823638916,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.010359375737607479,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 3.753803014755249,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.010457335971295834,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 3.778233289718628,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.01047473307698965,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 3.605391263961792,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.01057284977287054,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 3.7074832916259766,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.010335509665310383,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 3.669400215148926,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.010604656301438808,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 3.6579153537750244,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.010402156971395016,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 3.6991233825683594,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.010328474454581738,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 3.7142724990844727,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.010589631274342537,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 3.6590285301208496,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.010586787015199661,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 3.715052843093872,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.01054228376597166,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 3.567382335662842,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.010599953122437,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 3.6226325035095215,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.010479569435119629,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 3.746243476867676,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.010413583368062973,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 3.639831781387329,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.010693448595702648,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 3.6095170974731445,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.010380701161921024,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 3.6874170303344727,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.010398137383162975,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 3.6677775382995605,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.010463608428835869,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 3.7340478897094727,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.01051968615502119,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 3.5982718467712402,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.010627644136548042,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 3.6890177726745605,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.010458312928676605,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 3.639946937561035,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.010449914261698723,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 3.6510815620422363,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.013585928827524185,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 3.541651487350464,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.7142744064331055,
+ "eval_runtime": 86.1003,
+ "eval_samples_per_second": 28.362,
+ "eval_steps_per_second": 1.777,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.01052639540284872,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 3.628779649734497,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.010964912362396717,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 3.694171905517578,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.010593419894576073,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 3.624443531036377,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.01095045730471611,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 3.6524055004119873,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.010763823054730892,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 3.656599760055542,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.010534845292568207,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 3.726625442504883,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.011051180772483349,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 3.5846238136291504,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.01103670708835125,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 3.616269826889038,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.010425313375890255,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 3.528974771499634,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.010939684696495533,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 3.7705178260803223,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.010312160477042198,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 3.737966775894165,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.010704337619245052,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 3.706246852874756,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.010644222609698772,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 3.6459007263183594,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.010891553945839405,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 3.6289610862731934,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.011134986765682697,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 3.590668201446533,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.010584825649857521,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 3.615771770477295,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.010991886258125305,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 3.721714973449707,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.011402108706533909,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 3.538965940475464,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.010697935707867146,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 3.648359537124634,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.010517035610973835,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 3.749526023864746,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.010620534420013428,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 3.731874465942383,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.010737698525190353,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 3.625178337097168,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.010687222704291344,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 3.624415874481201,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.010712170042097569,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 3.6931064128875732,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.01060887798666954,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 3.670821189880371,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.010376610793173313,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 3.8469483852386475,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.01051329355686903,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 3.6551308631896973,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.010989594273269176,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 3.5393049716949463,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.01038767583668232,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 3.705885171890259,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.010684794746339321,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 3.697051525115967,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.010663939639925957,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 3.6838490962982178,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.010809536091983318,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 3.5942301750183105,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.01084168627858162,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 3.6479849815368652,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.010728816501796246,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 3.7277913093566895,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.01032975409179926,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 3.6657490730285645,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.010722869075834751,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 3.751311779022217,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.010471544228494167,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 3.680821180343628,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.010775016620755196,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 3.5578250885009766,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.010975691489875317,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 3.5339064598083496,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.010622451081871986,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 3.6166341304779053,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.010890105739235878,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 3.569092035293579,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.010871225036680698,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 3.698408603668213,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.010501074604690075,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 3.5865330696105957,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.011065141297876835,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 3.672624349594116,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.010487294755876064,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 3.5983645915985107,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.010933814570307732,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 3.7004053592681885,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.011023259721696377,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 3.5738251209259033,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.010547676123678684,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 3.7099862098693848,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.010578920133411884,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 3.7546958923339844,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.010626672767102718,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 3.6026458740234375,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.010627084411680698,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 3.633793592453003,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.010266517288982868,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 3.666689157485962,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.0107617462053895,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 3.5540871620178223,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.01041004341095686,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 3.678253650665283,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.01026161853224039,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 3.701547861099243,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.010734396986663342,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 3.5305237770080566,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.010478617623448372,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 3.6644625663757324,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.01041773334145546,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 3.7398324012756348,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.010665396228432655,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 3.69044828414917,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.010550654493272305,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 3.637752056121826,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.01097883377224207,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 3.679640769958496,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.010624000802636147,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 3.757322311401367,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.01074673980474472,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 3.6506032943725586,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.01069655455648899,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 3.723083019256592,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.01091351080685854,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 3.6034116744995117,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.010381899774074554,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 3.696979522705078,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.010780731216073036,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 3.62003755569458,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.0106213903054595,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 3.759542942047119,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.010816322639584541,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 3.7188475131988525,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.010865229181945324,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 3.7408390045166016,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.010682439431548119,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 3.7417144775390625,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.013518013060092926,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 3.699465274810791,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.7125468254089355,
+ "eval_runtime": 85.6381,
+ "eval_samples_per_second": 28.515,
+ "eval_steps_per_second": 1.787,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.010887881740927696,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 3.6041579246520996,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.010766466148197651,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 3.6605751514434814,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.011448126286268234,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 3.6999757289886475,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.011493033729493618,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 3.582723617553711,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.01084202341735363,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 3.6581192016601562,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.010557609610259533,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 3.653883457183838,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.011247646994888783,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 3.6497740745544434,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.010664111003279686,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 3.553312063217163,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.010975253768265247,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 3.6196258068084717,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.010572442784905434,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 3.6203126907348633,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.010983611457049847,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 3.5807945728302,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.010395437479019165,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 3.71705961227417,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.01056945975869894,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 3.478778839111328,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.010592995211482048,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 3.644442558288574,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.010395487770438194,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 3.7756967544555664,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.010650730691850185,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 3.6974682807922363,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.010764485225081444,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 3.5944886207580566,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.010510710068047047,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 3.570615768432617,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.010854898020625114,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 3.66498064994812,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.010549460537731647,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 3.760610580444336,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.01069426629692316,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 3.581028938293457,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.010241464711725712,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 3.652651786804199,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.01042160578072071,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 3.6644420623779297,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.010355078615248203,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 3.7401928901672363,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.0103232990950346,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 3.67875599861145,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.010247972793877125,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 3.663907051086426,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.010393938049674034,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 3.6922354698181152,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.010332783684134483,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 3.695392370223999,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.010314750485122204,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 3.680938720703125,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.010585930198431015,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 3.5173425674438477,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.010234625078737736,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 3.7759923934936523,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.010067804716527462,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 3.7258429527282715,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.01042136736214161,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 3.6556038856506348,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.010507774539291859,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 3.635871410369873,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.010355065576732159,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 3.633258819580078,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.010563935153186321,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 3.5761260986328125,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.01006772369146347,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 3.602151870727539,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.010395150631666183,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 3.62664794921875,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.010469610802829266,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 3.6665854454040527,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.010135308839380741,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 3.694465160369873,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.01021372340619564,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 3.706385612487793,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.01047767698764801,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 3.627901554107666,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.010106295347213745,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 3.677581310272217,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.010386410169303417,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 3.650301933288574,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.010301743634045124,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 3.7333407402038574,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.01013338565826416,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 3.733818769454956,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.01047387532889843,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 3.601315498352051,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.010207134298980236,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 3.7421507835388184,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.010462267324328423,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 3.5990211963653564,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.010498263873159885,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 3.6144235134124756,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.010573030449450016,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 3.6187644004821777,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.010144715197384357,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 3.7219886779785156,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.010262173600494862,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 3.7200653553009033,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.010318619199097157,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 3.621098279953003,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.01040918193757534,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 3.6570935249328613,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.01004865113645792,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 3.62070631980896,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.010537326335906982,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 3.660491704940796,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.010265836492180824,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 3.617920398712158,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.010330178774893284,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 3.65623140335083,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.01067344006150961,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 3.5146265029907227,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.010205901227891445,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 3.6632275581359863,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.010501977056264877,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 3.535737991333008,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.01021649781614542,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 3.716676712036133,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.01034870371222496,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 3.676140069961548,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.01020711101591587,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 3.577268600463867,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.010482641868293285,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 3.697073459625244,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.010310336016118526,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 3.707488536834717,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.010384567081928253,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 3.6219279766082764,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.010294893756508827,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 3.6894752979278564,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.010161720216274261,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 3.707796573638916,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.010273336432874203,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 3.644685745239258,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.01322508417069912,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 3.5941271781921387,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.727503776550293,
+ "eval_runtime": 85.2461,
+ "eval_samples_per_second": 28.646,
+ "eval_steps_per_second": 1.795,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.010450659319758415,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 3.69075345993042,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.010451182723045349,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 3.795605182647705,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.01077298168092966,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 3.6475234031677246,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.010724779218435287,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 3.467151165008545,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.010418664664030075,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 3.619513511657715,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.010397085919976234,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 3.7081429958343506,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.010976964607834816,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 3.5362629890441895,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.010142570361495018,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 3.882387638092041,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.011219651438295841,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 3.625960350036621,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.010485482402145863,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 3.6505603790283203,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.010280954651534557,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 3.699924945831299,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.010680160485208035,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 3.6987147331237793,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.01008457038551569,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 3.7250161170959473,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.010840549133718014,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 3.676187753677368,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.01026200968772173,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 3.730973958969116,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.010260597802698612,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 3.5819954872131348,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.0107171181589365,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 3.622724771499634,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.010594614781439304,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 3.6249685287475586,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.010256743058562279,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 3.6165173053741455,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.010805285535752773,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 3.5523672103881836,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.01092301681637764,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 3.406881809234619,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.010477510280907154,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 3.6325292587280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.010572307743132114,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 3.5459094047546387,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.010510562919080257,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 3.6716790199279785,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.010186564177274704,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 3.842869758605957,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.010589318349957466,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 3.599871873855591,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.010385156609117985,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 3.7396950721740723,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.010047109797596931,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 3.7100629806518555,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.010317830368876457,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 3.616238594055176,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.01062291581183672,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 3.5577707290649414,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.010189960710704327,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 3.596801280975342,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.009818674065172672,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 3.8307883739471436,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.010686943307518959,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 3.5708508491516113,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.010356864891946316,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 3.583446979522705,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.010150663554668427,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 3.6716527938842773,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.010174889117479324,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 3.560347557067871,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.010371376760303974,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 3.6427178382873535,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.009991277940571308,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 3.6818103790283203,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.010096525773406029,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 3.6590263843536377,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.010256882756948471,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 3.6281073093414307,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.010260817594826221,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 3.6478071212768555,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.01008711475878954,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 3.6427230834960938,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.010351716540753841,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 3.604745388031006,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.010051876306533813,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 3.657132387161255,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.009867713786661625,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 3.8197360038757324,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.010292892344295979,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 3.6619458198547363,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.009846757166087627,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 3.7708778381347656,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.010162790305912495,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 3.604006290435791,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.01021569687873125,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 3.556640148162842,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.00997830554842949,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 3.6774988174438477,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.009990915656089783,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 3.748716354370117,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.009989185258746147,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 3.6826841831207275,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.010109814815223217,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 3.6835732460021973,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.010180813260376453,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 3.6313610076904297,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.009938279166817665,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 3.869779586791992,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.01012891810387373,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 3.62372088432312,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.010117762722074986,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 3.8129868507385254,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.0101615684106946,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 3.6137633323669434,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.010746470652520657,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 3.630505323410034,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.010123452171683311,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 3.65401291847229,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.010247427970170975,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 3.5297603607177734,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.010388423688709736,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 3.6238255500793457,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.010181869380176067,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 3.654742956161499,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.010431759990751743,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 3.614164352416992,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.01023387722671032,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 3.5699102878570557,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.009967552497982979,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 3.700979709625244,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.010138928890228271,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 3.741842746734619,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.010247628204524517,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 3.568204402923584,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.009880070574581623,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 3.7166037559509277,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.010117005556821823,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 3.697563409805298,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.010152291506528854,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 3.598210573196411,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.013300119899213314,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 3.611368417739868,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.753724098205566,
+ "eval_runtime": 84.2847,
+ "eval_samples_per_second": 28.973,
+ "eval_steps_per_second": 1.815,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.010299697518348694,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 3.7087225914001465,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.010044008493423462,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 3.6918580532073975,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.01034870371222496,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 3.675506591796875,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.010332876816391945,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 3.6209158897399902,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.010003120638430119,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 3.52970027923584,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.010242326185107231,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 3.4770617485046387,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.009838285855948925,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 3.705012798309326,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.010244633071124554,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 3.5280323028564453,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.01023088302463293,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 3.538292407989502,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.010130329988896847,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 3.6165552139282227,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.009863656014204025,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 3.767970085144043,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.010312794707715511,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 3.614030122756958,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.010277412831783295,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 3.626993179321289,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.00999719463288784,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 3.7456741333007812,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.01029484998434782,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 3.6644556522369385,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.009860316291451454,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 3.8357770442962646,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.010103589855134487,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 3.6749749183654785,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.009857814759016037,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 3.7077512741088867,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.009869539178907871,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 3.774649143218994,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.009879796765744686,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 3.6891822814941406,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.009913664311170578,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 3.6512491703033447,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.009835373610258102,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 3.578923225402832,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.010177831165492535,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 3.4492783546447754,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.009978708811104298,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 3.617199420928955,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.009757592342793941,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 3.813636302947998,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.010047994554042816,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 3.6464805603027344,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.009992490522563457,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 3.6081228256225586,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.009895354509353638,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 3.630256175994873,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.009635576978325844,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 3.7958762645721436,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.010051862336695194,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 3.604858160018921,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.010219655930995941,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 3.546370029449463,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.009885251522064209,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 3.7979798316955566,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.010092189535498619,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 3.5678584575653076,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.009964804165065289,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 3.6732869148254395,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.010062708519399166,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 3.5310144424438477,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.010174709372222424,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 3.6279544830322266,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.00990620069205761,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 3.698559045791626,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.010147587396204472,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 3.606132984161377,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.009944230318069458,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 3.7514166831970215,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.010071675293147564,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 3.635221004486084,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.010020526126027107,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 3.7188243865966797,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.00977291725575924,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 3.7070627212524414,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.010155490599572659,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 3.6828484535217285,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.010125445201992989,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 3.5894861221313477,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.010209117084741592,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 3.513420581817627,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.010160212405025959,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 3.6079177856445312,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.009973670355975628,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 3.660189151763916,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.009911510162055492,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 3.698422431945801,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.010093717835843563,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 3.7000575065612793,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.010089986957609653,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 3.6587486267089844,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.01008665096014738,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 3.5204949378967285,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.009868312627077103,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 3.7092156410217285,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.01024295948445797,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 3.6775684356689453,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.010427089408040047,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 3.535743474960327,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.010192863643169403,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 3.5641260147094727,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.010153011418879032,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 3.701293468475342,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.010095211677253246,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 3.7041923999786377,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.010300367139279842,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 3.61315655708313,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.010264323092997074,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 3.6816904544830322,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.010065956972539425,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 3.583775758743286,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.010042326524853706,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 3.668391227722168,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.010368235409259796,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 3.6565170288085938,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.010307176038622856,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 3.6138839721679688,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.010180974379181862,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 3.658078670501709,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.010204372927546501,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 3.6040351390838623,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.010068336501717567,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 3.5643930435180664,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.009892802685499191,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 3.6251132488250732,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.010073086246848106,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 3.6666736602783203,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.010118677280843258,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 3.6956734657287598,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.010205233469605446,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 3.578723430633545,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.00998369324952364,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 3.6732354164123535,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.013396026566624641,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 3.6343507766723633,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.772793292999268,
+ "eval_runtime": 86.0388,
+ "eval_samples_per_second": 28.383,
+ "eval_steps_per_second": 1.778,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.010415416210889816,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 3.5387420654296875,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.010190770030021667,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 3.5928807258605957,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.010536297224462032,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 3.6700243949890137,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.010222907178103924,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 3.6895689964294434,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.010218674317002296,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 3.533839225769043,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.010047132149338722,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 3.6750645637512207,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.0104233268648386,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 3.5243964195251465,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.010383695363998413,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 3.565342903137207,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.010048693045973778,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 3.70458984375,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.010256735607981682,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 3.722970485687256,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.010099781677126884,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 3.6393308639526367,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.010103316977620125,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 3.4968714714050293,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.010001487098634243,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 3.6226253509521484,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.009999564848840237,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 3.576249599456787,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.010029874742031097,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 3.6122891902923584,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.010214915499091148,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 3.4698216915130615,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.009711493737995625,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 3.6627278327941895,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.010100006125867367,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 3.6436243057250977,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.009900916367769241,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 3.6055731773376465,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.009813538752496243,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 3.651754856109619,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.010175704956054688,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 3.473374366760254,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.009967555291950703,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 3.6174113750457764,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.010112479329109192,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 3.6198692321777344,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.010001592338085175,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 3.5990819931030273,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.00983844231814146,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 3.6337671279907227,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.010080224834382534,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 3.6805613040924072,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.010037674568593502,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 3.609055280685425,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.009871575981378555,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 3.565932273864746,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.010031160898506641,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 3.521005153656006,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.009946644306182861,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 3.6073803901672363,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.010002030059695244,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 3.5549066066741943,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.01005497109144926,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 3.5870392322540283,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.009837804362177849,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 3.646942615509033,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.009868433699011803,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 3.7009453773498535,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.010489356704056263,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 3.5060977935791016,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.009817800484597683,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 3.6464366912841797,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.010007795877754688,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 3.6670634746551514,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.010086318477988243,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 3.594205141067505,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.010066303424537182,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 3.6243114471435547,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.009636988863348961,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 3.7795352935791016,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.010062859393656254,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 3.5964536666870117,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.009714869782328606,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 3.7391300201416016,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.009830289520323277,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 3.5883266925811768,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.009627335704863071,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 3.6492302417755127,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.009866955690085888,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 3.596245765686035,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.010196004994213581,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 3.643705368041992,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.009784696623682976,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 3.6940207481384277,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.010061181150376797,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 3.6626949310302734,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.00989742111414671,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 3.5429298877716064,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.009915201924741268,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 3.6773242950439453,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.010082722641527653,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 3.581228256225586,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.00968837458640337,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 3.6868748664855957,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.009882677346467972,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 3.669961452484131,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.009886407293379307,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 3.733452081680298,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.009815924800932407,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 3.6317214965820312,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.009805339388549328,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 3.646848678588867,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.010099219158291817,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 3.499190330505371,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.010085233487188816,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 3.606651544570923,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.009855957701802254,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 3.6624374389648438,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.010144675150513649,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 3.550400733947754,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.01011188980191946,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 3.7907161712646484,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.009690810926258564,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 3.6564908027648926,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.009902643971145153,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 3.574329376220703,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.009960168972611427,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 3.7213761806488037,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.010033962316811085,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 3.6695356369018555,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.009981526993215084,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 3.5987329483032227,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.010042416863143444,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 3.5841965675354004,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.009764176793396473,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 3.6129932403564453,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.009926766157150269,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 3.55425763130188,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.009945674799382687,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 3.5070297718048096,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.00982875656336546,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 3.7323827743530273,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.013072168454527855,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 3.6015539169311523,
+ "step": 3240
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.3807228134673613e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-3240/training_args.bin b/runs/i5-exp-lm/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-360/chat_template.jinja b/runs/i5-exp-lm/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-360/config.json b/runs/i5-exp-lm/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-360/generation_config.json b/runs/i5-exp-lm/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-360/model.safetensors b/runs/i5-exp-lm/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5fab5bd7db221ca27464f228ed123aecc9f7c4e1
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ec2a5adab1f73bf220775e8d266e16de8fb38ce4a5a6580bc13cc38610882b90
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-360/optimizer.pt b/runs/i5-exp-lm/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b491d0c118868c10982bbe50046984c491cff267
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:589a836f3bd863eaa15430a6e428934b1219fa75cb0df2e36a3666bf8b54b37e
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-360/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..860ac348eca948409a21a6c9478d7b7e4f330cd8
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7951c4ddea6aa39cece055d9cfedd6527bb1b5e0e22818110f6563c068dbc434
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-360/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..38bf4bcc1e04a6bd697d4f285d65d2a1cb8ad29b
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9e714682e0b0f71c7d4352950c26f05605ec9de98dc248297ff7eae2ac1079b4
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-360/scheduler.pt b/runs/i5-exp-lm/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..d63b22e047ab13a6c29adc08f78969e1d6e569ff
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2802ceffe363a15cca2d2192020ec6c680a5afa8cc5d08bb488000d79d1a8eb0
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-360/tokenizer.json b/runs/i5-exp-lm/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-360/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-360/trainer_state.json b/runs/i5-exp-lm/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ebd2d1d87c19743be262973be628a5540b57a8
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/trainer_state.json
@@ -0,0 +1,2586 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 5.0,
+ "eval_steps": 500,
+ "global_step": 360,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.5341364594081792e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-360/training_args.bin b/runs/i5-exp-lm/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-3600/chat_template.jinja b/runs/i5-exp-lm/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-3600/config.json b/runs/i5-exp-lm/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-3600/generation_config.json b/runs/i5-exp-lm/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-3600/model.safetensors b/runs/i5-exp-lm/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..f80901dd2546470d0331270361152634da0198a4
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f85e3081541067daf407ab69f960db66303a30427bc432e369e4fbdb28724399
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-3600/optimizer.pt b/runs/i5-exp-lm/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..d6060dc7e779504b97d896f8b0a394ad74409aaa
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a4311632143efdfa21ed373770326b7a6ef46ea1204f7538a880d185ac17c2ae
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-3600/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c75042e0fe40566da926f4bae24e6b710139c767
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:db0aa739b7d02eb196984618d119eef8e1b70a1a22fb7ea21f929ac8b35035ff
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-3600/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f95f536619df00e36260f4250d20ed6b255160a8
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a1e3dda89ddec7b6a1bc570d7ad8877e04e23bde028b6deca0d0c5a2eb306b37
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-3600/scheduler.pt b/runs/i5-exp-lm/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..dff04aa3b724ae7dec72031a9c3d0ecf0b695f1b
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:187927afe10d5874e052562039160b9509612fe972489c80a97620ccae701300
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-3600/tokenizer.json b/runs/i5-exp-lm/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-3600/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-3600/trainer_state.json b/runs/i5-exp-lm/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..108fa0b24c00bef443359bd6a852d8a7ac2dddb3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/trainer_state.json
@@ -0,0 +1,25626 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 50.0,
+ "eval_steps": 500,
+ "global_step": 3600,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.890356540679932,
+ "eval_runtime": 85.3609,
+ "eval_samples_per_second": 28.608,
+ "eval_steps_per_second": 1.792,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.01129163708537817,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.729471206665039,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.01249515451490879,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.800574779510498,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.01225930918008089,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.737057685852051,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.013675127178430557,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.689688205718994,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.015790853649377823,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.689998626708984,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.01707473210990429,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.710476875305176,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.016664814203977585,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.697582244873047,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.012732148170471191,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.722742080688477,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.011001636274158955,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.776992321014404,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.01092627365142107,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.720349311828613,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.010394204407930374,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.674706935882568,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.011934607289731503,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.684659481048584,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.01201821118593216,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.770275115966797,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.012723512947559357,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.764190673828125,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.01094222255051136,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.76710844039917,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.011005948297679424,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.742225646972656,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.012266199104487896,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.698729515075684,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.011104591190814972,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.766684055328369,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.011739527806639671,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.686391830444336,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.011549600400030613,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.6985883712768555,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.010842635296285152,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.669053077697754,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.012162920087575912,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.777218818664551,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.012567814439535141,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.660477638244629,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.01285367738455534,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.786562442779541,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.013799918815493584,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.743647575378418,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.013055664487183094,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.809377670288086,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.012472427450120449,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.781314849853516,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.013617649674415588,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.808526992797852,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.014055078849196434,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.646785736083984,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.01267037633806467,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.718032360076904,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.010922698304057121,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.704363822937012,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.010434774681925774,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.645308494567871,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.01074229832738638,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.724335670471191,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.010876304470002651,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.5825886726379395,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.011322720907628536,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.65030574798584,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.011602303944528103,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.734306812286377,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.011719908565282822,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.658108711242676,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.011743842624127865,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.770982265472412,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.010331151075661182,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.6331586837768555,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.008791595697402954,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.725146293640137,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.008578740991652012,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.624502182006836,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.009004893712699413,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.742828369140625,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.009573479183018208,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.622708320617676,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.01041464228183031,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.684161186218262,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.011045945808291435,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.609228610992432,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.010070783086121082,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.641618728637695,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.010972147807478905,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.644696235656738,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.010733773931860924,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.6715803146362305,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.009787425398826599,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.700556755065918,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.009617997333407402,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.679405212402344,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.009280161932110786,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.714821815490723,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.008260868489742279,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.7078657150268555,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.008758903481066227,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.693661689758301,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.010411540977656841,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.658614158630371,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.011002707295119762,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.634832859039307,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.010880445130169392,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.616508483886719,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.010837022215127945,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.672296524047852,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.010099196806550026,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.791172027587891,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.010247079655528069,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.675925254821777,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.011637990362942219,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.599152565002441,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.012842732481658459,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.619414329528809,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.013639737851917744,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.606694221496582,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.012222157791256905,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.687290191650391,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.012333706021308899,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.765318870544434,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.013390329666435719,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.631927013397217,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.013285054825246334,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.691300392150879,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.013075296767055988,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.510283946990967,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.012810291722416878,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.5842814445495605,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.013797542080283165,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.766282081604004,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.01311254408210516,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.7299699783325195,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.01145943347364664,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.690828323364258,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.012235896661877632,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.698905944824219,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.8219075202941895,
+ "eval_runtime": 84.567,
+ "eval_samples_per_second": 28.877,
+ "eval_steps_per_second": 1.809,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.011286469176411629,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.565463066101074,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.011353595182299614,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.5171403884887695,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.01170931477099657,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.588143348693848,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.010842559859156609,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.5269880294799805,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.011599496006965637,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.516411781311035,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.011611152440309525,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.613421440124512,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.012188252061605453,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.6104912757873535,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.014187986962497234,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.572595596313477,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.014139813371002674,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.6303253173828125,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.013199188746511936,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.698197364807129,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.011453524231910706,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.628894329071045,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.011302334256470203,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.497379302978516,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.011500476859509945,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.568019866943359,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.012794969603419304,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.539734363555908,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.013336299918591976,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.668694496154785,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.014581194147467613,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.640091896057129,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.01611539162695408,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.6081085205078125,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.017746973782777786,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.705665588378906,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.018630284816026688,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.663052558898926,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.01976708136498928,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.638059616088867,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.01853111758828163,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.520423889160156,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.020108293741941452,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.656866073608398,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.018784403800964355,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.5618414878845215,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.014132671989500523,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.6760711669921875,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.01304982416331768,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.549790859222412,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.011581643484532833,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.637387275695801,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.011038010939955711,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.665261268615723,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.01160713192075491,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.598143577575684,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.010916131548583508,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.691004276275635,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.011148793622851372,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.6518096923828125,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.01052724476903677,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.5940399169921875,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.010340332053601742,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.651786804199219,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.00983169674873352,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.65671443939209,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.00980902649462223,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.643744468688965,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.009891978465020657,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.663626194000244,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.010785561054944992,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.600457668304443,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.011129886843264103,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.591339588165283,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.010168756358325481,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.572185039520264,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.00928750541061163,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.526041030883789,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.009058310650289059,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.715224266052246,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.008814281783998013,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.5765790939331055,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.009331503883004189,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.655320167541504,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.008979840204119682,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.603329658508301,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.008871424943208694,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.627086162567139,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.008826219476759434,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.583706855773926,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.009397999383509159,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.594273567199707,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.010141545906662941,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.669597625732422,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.009539161808788776,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.654068946838379,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.009764957241714,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.542570114135742,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.010022703558206558,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.634885311126709,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.009607086889445782,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.521687984466553,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.009053241461515427,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.5915422439575195,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.00881615374237299,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.4808573722839355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.008368799462914467,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.511532783508301,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.008857316337525845,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.598438262939453,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.008758321404457092,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.584662437438965,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.008855392225086689,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.598358154296875,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.009120459668338299,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.529825210571289,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.008564659394323826,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.589111328125,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.008792921900749207,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.532111167907715,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.007963973097503185,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.682466506958008,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.007791632320731878,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.659955024719238,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.008086184039711952,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.480910778045654,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.008791681379079819,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.599052429199219,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.008853855542838573,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.559782981872559,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.008602464571595192,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.583155632019043,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.009260631166398525,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.485332489013672,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.010392607189714909,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.625976085662842,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.0127039086073637,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.541055202484131,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.01494575385004282,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.591403484344482,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.013681445270776749,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.5471343994140625,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.012075583450496197,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.592347145080566,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.737804889678955,
+ "eval_runtime": 84.6917,
+ "eval_samples_per_second": 28.834,
+ "eval_steps_per_second": 1.807,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.011875178664922714,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.561169624328613,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.011129221878945827,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.566012382507324,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.012689010240137577,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 4.597123146057129,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.013559090904891491,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.508796691894531,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.013740521855652332,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.436175346374512,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.013255128636956215,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.599727630615234,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.014225056394934654,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.523494720458984,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.01281562726944685,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.508453369140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.014795585535466671,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 4.5024094581604,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.017136067152023315,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 4.598742485046387,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.01993183232843876,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.6294331550598145,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.02345096319913864,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 4.526772499084473,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.024501807987689972,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.591343879699707,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.023851271718740463,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.635672569274902,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.019017482176423073,
+ "learning_rate": 0.000530477115403131,
+ "loss": 4.4356184005737305,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.017432328313589096,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.5709662437438965,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.016555573791265488,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 4.546726703643799,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.014970830641686916,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.498089790344238,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.01750214956700802,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 4.477832317352295,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.016552206128835678,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 4.524667263031006,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.01503191702067852,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.70253849029541,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.014488784596323967,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 4.546735763549805,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.013655255548655987,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 4.460050582885742,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.013147937133908272,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 4.527730941772461,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.011305583640933037,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 4.579794883728027,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.01003380585461855,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.530755996704102,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.010453758761286736,
+ "learning_rate": 0.000528407168205483,
+ "loss": 4.541379928588867,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.009854009374976158,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 4.384587287902832,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.010096034035086632,
+ "learning_rate": 0.000528059628009464,
+ "loss": 4.520673751831055,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.009121013805270195,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 4.479151248931885,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.009058412164449692,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 4.4478864669799805,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.008686631917953491,
+ "learning_rate": 0.000527536958117778,
+ "loss": 4.534232139587402,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.008926458656787872,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 4.357625961303711,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.0090916333720088,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.507582187652588,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.008234221488237381,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 4.635655403137207,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.007629396393895149,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 4.488568305969238,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.007946236059069633,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 4.559665679931641,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.0076207611709833145,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 4.462030410766602,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.0075648752972483635,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 4.392031669616699,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.006921959109604359,
+ "learning_rate": 0.000526135222238964,
+ "loss": 4.521649360656738,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.007954186759889126,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 4.467146873474121,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.007875180803239346,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 4.470349311828613,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.00823913048952818,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 4.641493320465088,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.008808314800262451,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 4.602619171142578,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.00903131440281868,
+ "learning_rate": 0.000525253290006091,
+ "loss": 4.50753927230835,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.008173633366823196,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.512781143188477,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.009227241389453411,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 4.467619895935059,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.009651051834225655,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 4.552989482879639,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.00946774147450924,
+ "learning_rate": 0.000524544520190982,
+ "loss": 4.526645183563232,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.009714723564684391,
+ "learning_rate": 0.000524366881143897,
+ "loss": 4.407388210296631,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.011174913495779037,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 4.488749980926514,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.012882710434496403,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.512380599975586,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.012615815736353397,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 4.496803283691406,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.012103873305022717,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 4.472703456878662,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.01135164126753807,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 4.565305709838867,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.010311715304851532,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 4.607386112213135,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.010541068390011787,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 4.49165678024292,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.010818482376635075,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.6018171310424805,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.010977623984217644,
+ "learning_rate": 0.000522760121133566,
+ "loss": 4.498250961303711,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.011156081221997738,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 4.59029483795166,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.010592049919068813,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 4.539745330810547,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.012692742049694061,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 4.4293928146362305,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.011900504119694233,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 4.537265777587891,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.0107554467394948,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 4.561299800872803,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.01016003917902708,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 4.5301713943481445,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.009342647157609463,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.554500579833984,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.009123687632381916,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 4.522890090942383,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.00992602203041315,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 4.550475120544434,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.010401489213109016,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 4.51146125793457,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.009270413778722286,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 4.48792028427124,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.007772582583129406,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 4.546614646911621,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.008854364044964314,
+ "learning_rate": 0.000520413954218197,
+ "loss": 4.491641521453857,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.744499683380127,
+ "eval_runtime": 84.9828,
+ "eval_samples_per_second": 28.735,
+ "eval_steps_per_second": 1.8,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.009714286774396896,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 4.354530334472656,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.011337408795952797,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 4.453022003173828,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.012017983943223953,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 4.532496452331543,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.012849903665482998,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 4.369178771972656,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.012892029248178005,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 4.475621700286865,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.012159446254372597,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 4.446768283843994,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.013566329143941402,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 4.458907127380371,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.014261760748922825,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 4.42843770980835,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.012744956649839878,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 4.369121551513672,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.011710738763213158,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 4.40165901184082,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.010829294100403786,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 4.52054500579834,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.010726217180490494,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 4.488935470581055,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.012496832758188248,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 4.459749698638916,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.012305906973779202,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 4.502170562744141,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.01069764792919159,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 4.375840663909912,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.010256128385663033,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 4.45052433013916,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.009635364636778831,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 4.411620616912842,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.010875415988266468,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 4.492788314819336,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.011338245123624802,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 4.5438618659973145,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.011488576419651508,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 4.4863433837890625,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.010288058780133724,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 4.480364799499512,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.009679945185780525,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 4.469759941101074,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.009577246382832527,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 4.533432960510254,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.009693451225757599,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 4.4915618896484375,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.008656642399728298,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 4.3901495933532715,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.008772574365139008,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 4.4682111740112305,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.008861121721565723,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 4.457932472229004,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.00952855497598648,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 4.491457939147949,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.01049089152365923,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 4.387182235717773,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.011289187707006931,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 4.625443935394287,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.015052586793899536,
+ "learning_rate": 0.000514700389506765,
+ "loss": 4.417261600494385,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.018069544807076454,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 4.4443440437316895,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.015975916758179665,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 4.499447822570801,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.01219141948968172,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 4.492834091186523,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.014089427888393402,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 4.431087970733643,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.01322745718061924,
+ "learning_rate": 0.000513763379483416,
+ "loss": 4.4831061363220215,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.013197849504649639,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 4.419775485992432,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.012092506512999535,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 4.418637275695801,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.010357605293393135,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 4.470183372497559,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.011000803671777248,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 4.547388076782227,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.009873750619590282,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 4.517792224884033,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.009159636683762074,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 4.425044059753418,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.008599146269261837,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 4.471135139465332,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.009066416881978512,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 4.511940956115723,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.00949510931968689,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 4.2927446365356445,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.009065515361726284,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 4.425195693969727,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.009289958514273167,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 4.3995280265808105,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.009879272431135178,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 4.479137420654297,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.009240188635885715,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 4.554681777954102,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.009222316555678844,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 4.478948593139648,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.01010842900723219,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 4.404071807861328,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.010829013772308826,
+ "learning_rate": 0.000510736513223685,
+ "loss": 4.485267639160156,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.011671649292111397,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 4.4160308837890625,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.01293864380568266,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 4.456898212432861,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.0128264669328928,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 4.455832481384277,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.011623082682490349,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 4.47718620300293,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.011057600378990173,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 4.402538299560547,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.009945102035999298,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 4.440237045288086,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.010186834260821342,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 4.447818756103516,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.009586603380739689,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 4.476567268371582,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.008537296205759048,
+ "learning_rate": 0.000509015031826403,
+ "loss": 4.379773139953613,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.008115965873003006,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 4.434096336364746,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.008237744681537151,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 4.418593406677246,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.009483733214437962,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 4.441556930541992,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.009339320473372936,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 4.460338115692139,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.009208660572767258,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 4.454706192016602,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.009335966780781746,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 4.45575475692749,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.00977858155965805,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 4.435143947601318,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.009348094463348389,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 4.453028678894043,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.009728251956403255,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 4.554195404052734,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.011175138875842094,
+ "learning_rate": 0.000507086511366679,
+ "loss": 4.523681640625,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.012288650497794151,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 4.375825881958008,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.710513591766357,
+ "eval_runtime": 84.6517,
+ "eval_samples_per_second": 28.848,
+ "eval_steps_per_second": 1.807,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.011119573377072811,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 4.375786781311035,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.010840141214430332,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 4.392002105712891,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.011470342054963112,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 4.357475280761719,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.010149743407964706,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 4.460338592529297,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.010063077323138714,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 4.486861228942871,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.010615724138915539,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 4.300841808319092,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.011044306680560112,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 4.413218021392822,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.012345953844487667,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 4.359622001647949,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.012634224258363247,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 4.380892276763916,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.01313868723809719,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 4.396400451660156,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.012513097375631332,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 4.246045112609863,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.011862528510391712,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 4.411212921142578,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.012921116314828396,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 4.305008888244629,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.012789680622518063,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 4.524823188781738,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.011268050409853458,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 4.443220615386963,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.011643258854746819,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 4.51887321472168,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.01199142262339592,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 4.33749532699585,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.012744380161166191,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 4.444286346435547,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.012469833716750145,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 4.443667411804199,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.011402441188693047,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 4.445569038391113,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.01039918139576912,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 4.275267124176025,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.009574230760335922,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 4.333032608032227,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.010449881665408611,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 4.449936389923096,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.010447368957102299,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 4.3233866691589355,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.00996749009937048,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 4.3778157234191895,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.010091624222695827,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 4.378281593322754,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.010687381029129028,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 4.4292497634887695,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.011297064833343029,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 4.485218048095703,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.013298186473548412,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 4.368557929992676,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.014185764826834202,
+ "learning_rate": 0.000501004302813408,
+ "loss": 4.306140899658203,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.012562476098537445,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 4.384128570556641,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.011393562890589237,
+ "learning_rate": 0.000500606587074199,
+ "loss": 4.425453186035156,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.011088693514466286,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 4.341315269470215,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.012023942545056343,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 4.329352855682373,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.01346237026154995,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 4.416104316711426,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.013998838141560555,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 4.376262664794922,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.01357982587069273,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 4.421658515930176,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.011503396555781364,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 4.3798675537109375,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.01099126785993576,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 4.5066328048706055,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.01012799609452486,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 4.419365882873535,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.00960598699748516,
+ "learning_rate": 0.000498809004003543,
+ "loss": 4.3573899269104,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.00892682559788227,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 4.48659610748291,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.009513969533145428,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 4.406859397888184,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.009688341058790684,
+ "learning_rate": 0.000498206964168724,
+ "loss": 4.381521224975586,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.00937080942094326,
+ "learning_rate": 0.000498005969458628,
+ "loss": 4.444803237915039,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.009160135872662067,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 4.338954925537109,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.00974023062735796,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 4.451372146606445,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.010222239419817924,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 4.331754684448242,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.011246063746511936,
+ "learning_rate": 0.000497200421111647,
+ "loss": 4.431285858154297,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.010005749762058258,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 4.360004901885986,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.00954038929194212,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 4.370833396911621,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.009795120917260647,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 4.3878374099731445,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.0098209697753191,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 4.455361366271973,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.011616947129368782,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 4.2148003578186035,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.010895215906202793,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 4.328103065490723,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.009717864915728569,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 4.418648719787598,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.010141950100660324,
+ "learning_rate": 0.000495581824580724,
+ "loss": 4.387214183807373,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.009940145537257195,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 4.4686384201049805,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.00942287128418684,
+ "learning_rate": 0.000495175620586125,
+ "loss": 4.294940948486328,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.010309961624443531,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 4.382201194763184,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.010651134885847569,
+ "learning_rate": 0.000494768797261945,
+ "loss": 4.422205924987793,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.00977237056940794,
+ "learning_rate": 0.000494565153760897,
+ "loss": 4.4240827560424805,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.010226410813629627,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 4.452295303344727,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.01061261910945177,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 4.396756172180176,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.010691538453102112,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 4.410971164703369,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.009490546770393848,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 4.376572608947754,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.00962291844189167,
+ "learning_rate": 0.00049354462443268,
+ "loss": 4.46612024307251,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.010535811074078083,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 4.581600189208984,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.011946570128202438,
+ "learning_rate": 0.000493135336920878,
+ "loss": 4.388246536254883,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.010819808579981327,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 4.446365833282471,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.01007852517068386,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 4.329967498779297,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.010566010139882565,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 4.5125508308410645,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.6838250160217285,
+ "eval_runtime": 84.7316,
+ "eval_samples_per_second": 28.82,
+ "eval_steps_per_second": 1.806,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.010564207099378109,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 4.3057661056518555,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.01132203545421362,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 4.341691970825195,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.011825311928987503,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 4.290183067321777,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.012605206109583378,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 4.33005952835083,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.014839079231023788,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 4.264408111572266,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.015701519325375557,
+ "learning_rate": 0.000491285979372924,
+ "loss": 4.25079345703125,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.01598695106804371,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 4.296278476715088,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.015450588427484035,
+ "learning_rate": 0.000490873338088198,
+ "loss": 4.425408363342285,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.015179877169430256,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 4.244082450866699,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.012817632406949997,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 4.356021881103516,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.013184875249862671,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 4.336308479309082,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.013995761051774025,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 4.36917781829834,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.015241186134517193,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 4.374691486358643,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.016288019716739655,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 4.325081825256348,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.017947249114513397,
+ "learning_rate": 0.000489424334303338,
+ "loss": 4.429945945739746,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.01641163043677807,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 4.263923645019531,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.013399588875472546,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 4.391318321228027,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.011937680654227734,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 4.308510780334473,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.012704651802778244,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 4.288001537322998,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.01175214909017086,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 4.364424705505371,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.012231011874973774,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 4.340753555297852,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.012764766812324524,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 4.379733562469482,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.011225519701838493,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 4.325727939605713,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.011706704273819923,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 4.414620399475098,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.0115711884573102,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 4.282655239105225,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.011045973747968674,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 4.3720011711120605,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.010685189627110958,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 4.337950706481934,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.009790085256099701,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 4.422059059143066,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.010019185952842236,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 4.3502044677734375,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.01010897196829319,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 4.355560302734375,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.010497501119971275,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 4.357562065124512,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.009770810604095459,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 4.413498401641846,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.009472711011767387,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 4.390877723693848,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.009647118858993053,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 4.3565239906311035,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.00987452082335949,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 4.419779300689697,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.00933237373828888,
+ "learning_rate": 0.000485033394934934,
+ "loss": 4.394540786743164,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.009825845248997211,
+ "learning_rate": 0.000484822676912974,
+ "loss": 4.421306610107422,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.010137110948562622,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 4.413664817810059,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.009861891157925129,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 4.452949523925781,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.009940220974385738,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 4.32667350769043,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.01020193099975586,
+ "learning_rate": 0.000483978341612154,
+ "loss": 4.480222702026367,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.010395417921245098,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 4.344918727874756,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.010154870338737965,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 4.265842437744141,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.01017867773771286,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 4.462510108947754,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.010042618960142136,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 4.3016510009765625,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.00975066889077425,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 4.34757661819458,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.009532083757221699,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 4.311891078948975,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.008623143658041954,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 4.361624717712402,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.008845659904181957,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 4.429472923278809,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.008513742126524448,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 4.380290985107422,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.008085202425718307,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 4.269344329833984,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.008754023350775242,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 4.220575332641602,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.0084915179759264,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 4.420450210571289,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.009233171120285988,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 4.376070976257324,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.009607886895537376,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 4.388174057006836,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.010642333887517452,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 4.405014991760254,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.01103333942592144,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 4.355452537536621,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.011708030477166176,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 4.382172584533691,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.012264288030564785,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 4.376100540161133,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.012404588982462883,
+ "learning_rate": 0.000479936075927473,
+ "loss": 4.371472358703613,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.011510667391121387,
+ "learning_rate": 0.000479721889242305,
+ "loss": 4.353776931762695,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.011793088167905807,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 4.349800109863281,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.013854588381946087,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 4.33216667175293,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.013526730239391327,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 4.221850872039795,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.010845503769814968,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 4.312380790710449,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.011042123660445213,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 4.318275451660156,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.010701841674745083,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 4.316951751708984,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.010363161563873291,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 4.372369766235352,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.00991434883326292,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 4.335710048675537,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.010945976711809635,
+ "learning_rate": 0.000477787822648007,
+ "loss": 4.295810699462891,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.012069685384631157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 4.324613571166992,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.012716198340058327,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 4.228555202484131,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.588464736938477,
+ "eval_runtime": 84.3935,
+ "eval_samples_per_second": 28.936,
+ "eval_steps_per_second": 1.813,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.010890922509133816,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 4.168377876281738,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.012814926914870739,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 4.24796199798584,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.013277065940201283,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 4.2315497398376465,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.012781595811247826,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 4.357738971710205,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.010518158785998821,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 4.324536323547363,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.010174508206546307,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 4.218634605407715,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.01093547698110342,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 4.182222843170166,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.009931730106472969,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 4.3742780685424805,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.009577504359185696,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 4.2736968994140625,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.009922451339662075,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 4.361057281494141,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.0102654118090868,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 4.272319793701172,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.00960908830165863,
+ "learning_rate": 0.000474756648870413,
+ "loss": 4.237208843231201,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.009962072595953941,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 4.231419563293457,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.010012651793658733,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 4.166547775268555,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.010600064881145954,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 4.307741165161133,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.011320426128804684,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 4.123382091522217,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.011564615182578564,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 4.254264831542969,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.011016296222805977,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 4.272546291351318,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.012541696429252625,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 4.270364761352539,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.015065579675137997,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 4.311223983764648,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.014310898259282112,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 4.4289703369140625,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.014348947443068027,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 4.254169464111328,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.015100759454071522,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 4.27076530456543,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.014535579830408096,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 4.330160617828369,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.014840706251561642,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 4.338754653930664,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.014509451575577259,
+ "learning_rate": 0.000471698352726896,
+ "loss": 4.297717094421387,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.0132996691390872,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 4.276352882385254,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.012586944736540318,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 4.291844367980957,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.01207876205444336,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 4.248396396636963,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.012690337374806404,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 4.247524261474609,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.012112760916352272,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 4.333850860595703,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.012352908961474895,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 4.384389877319336,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.011981985531747341,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 4.295732021331787,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.01106000505387783,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 4.242574214935303,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.011264842934906483,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 4.304058074951172,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.0095761027187109,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 4.394533157348633,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.009242162108421326,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 4.2396392822265625,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.009363953024148941,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 4.281248092651367,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.009141363203525543,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 4.378174781799316,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.009084222838282585,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 4.2404890060424805,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.009477653540670872,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 4.419787406921387,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.008756718598306179,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 4.3121843338012695,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.008607582189142704,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 4.297127723693848,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.00920915137976408,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 4.3713226318359375,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.00992834847420454,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 4.23015832901001,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.010027370415627956,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 4.190036773681641,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.010946880094707012,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 4.256232738494873,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.011402899399399757,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 4.274230003356934,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.011177662760019302,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 4.381168842315674,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.010614614002406597,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 4.213971138000488,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.010498727671802044,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 4.254775524139404,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.010217120870947838,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 4.245323181152344,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.009787912480533123,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 4.359185218811035,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.010546483099460602,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 4.32747745513916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.010843086987733841,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 4.34382438659668,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.010324584320187569,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 4.286264896392822,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.01026680413633585,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 4.37013053894043,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.010290060192346573,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 4.334752082824707,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.010795580223202705,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 4.311225891113281,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.010107353329658508,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 4.30443000793457,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.00968849752098322,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 4.403604507446289,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.010238504968583584,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 4.320505142211914,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.010129882022738457,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 4.205720901489258,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.009136381559073925,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 4.352236270904541,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.00862959586083889,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 4.344822883605957,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.00950282346457243,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 4.2249321937561035,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.009801932610571384,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 4.308567047119141,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.011230111122131348,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 4.314720153808594,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.011737835593521595,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 4.320032119750977,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.012377714738249779,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 4.237427711486816,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.01126295980066061,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 4.204867362976074,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.00949170533567667,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 4.413713455200195,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.575008392333984,
+ "eval_runtime": 84.8979,
+ "eval_samples_per_second": 28.764,
+ "eval_steps_per_second": 1.802,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.011229399591684341,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 4.108231544494629,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.015363847836852074,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 4.206150531768799,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.01817159168422222,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 4.283780097961426,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.01648675464093685,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 4.189932823181152,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.01374560222029686,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 4.258488178253174,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.013592054136097431,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 4.333279609680176,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.013226507231593132,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 4.253205299377441,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.014089241623878479,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 4.2094597816467285,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.01410731952637434,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 4.2171454429626465,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.012696709483861923,
+ "learning_rate": 0.000459203665939781,
+ "loss": 4.1567840576171875,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.01136153656989336,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 4.247399806976318,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.0107334079220891,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 4.223654747009277,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.010234535671770573,
+ "learning_rate": 0.000458522886595554,
+ "loss": 4.236691474914551,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.009782123379409313,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 4.150378704071045,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.010287188924849033,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 4.175963401794434,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.010959955863654613,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 4.2636518478393555,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.012371974997222424,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 4.275257110595703,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.012812909670174122,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 4.282969951629639,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.011314013041555882,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 4.245449066162109,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.010391229763627052,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 4.169569969177246,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.009797480888664722,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 4.1337127685546875,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.0113116055727005,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 4.19777774810791,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.012810985557734966,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 4.250965118408203,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.012107893824577332,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 4.297152042388916,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.011425476521253586,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 4.29306697845459,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.009697219356894493,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 4.213227272033691,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.009859567508101463,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 4.258334636688232,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.009114259853959084,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 4.242439270019531,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.009290320798754692,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 4.284178733825684,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.009526637382805347,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 4.277981758117676,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.010577795095741749,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 4.160984992980957,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.011093475855886936,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 4.143857479095459,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.01132283080369234,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 4.228236675262451,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.009871561080217361,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 4.234149932861328,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.01010302733629942,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 4.354837417602539,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.010146764107048512,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 4.135302543640137,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.00989940669387579,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 4.1389970779418945,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.010233025066554546,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 4.2552170753479,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.01075686328113079,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 4.316772937774658,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.009810023009777069,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 4.280229091644287,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.010613035410642624,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 4.349311828613281,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.011418680660426617,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 4.2416510581970215,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.010027112439274788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 4.353560447692871,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.009935091249644756,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 4.209999084472656,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.010974968783557415,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 4.348697662353516,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.010765019804239273,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 4.330660820007324,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.010668687522411346,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 4.329977989196777,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.00999768078327179,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 4.254817962646484,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.010282072238624096,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 4.18230676651001,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.010197912342846394,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 4.385293483734131,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.010382656008005142,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 4.2663726806640625,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.010417120531201363,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 4.281632900238037,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.009993969462811947,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 4.345653057098389,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.009918101131916046,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 4.265537261962891,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.00963318906724453,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 4.3308210372924805,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.009448705241084099,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 4.306342601776123,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.010798959992825985,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 4.312959671020508,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.01044217124581337,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 4.1967973709106445,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.00963195227086544,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 4.172243118286133,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.009524079971015453,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 4.286744117736816,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.008965004235506058,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 4.289793968200684,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.00866383221000433,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 4.292025566101074,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.00834657996892929,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 4.147590637207031,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.008255043998360634,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 4.207061767578125,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.009718240238726139,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 4.163729667663574,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.010587318800389767,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 4.181449890136719,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.01033844519406557,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 4.208406448364258,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.010350561700761318,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 4.251264572143555,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.010225022211670876,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 4.296426773071289,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.010455949231982231,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 4.296368598937988,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.010879119858145714,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 4.213140487670898,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.0104916887357831,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 4.316927433013916,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.617781162261963,
+ "eval_runtime": 84.077,
+ "eval_samples_per_second": 29.045,
+ "eval_steps_per_second": 1.82,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.010666732676327229,
+ "learning_rate": 0.000444677103403854,
+ "loss": 4.222338676452637,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.011821097694337368,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 4.207272529602051,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.011081425473093987,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 4.196959018707275,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.011358734220266342,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 4.233917236328125,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.012720144353806973,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 4.140024185180664,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.013483644463121891,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 4.206193923950195,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.012859486043453217,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 4.230644702911377,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.012943657115101814,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 4.108628749847412,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.01369069330394268,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 4.159682273864746,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.014471802860498428,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 4.211757659912109,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.01493762619793415,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 4.313312530517578,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.014203935861587524,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 4.205299377441406,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.012272331863641739,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 4.146660804748535,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.011665928177535534,
+ "learning_rate": 0.000441621628895411,
+ "loss": 4.228211402893066,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.01064158696681261,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 4.239677429199219,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.010211223736405373,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 4.163660049438477,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.010427219793200493,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 4.235831260681152,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.009842661209404469,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 4.17404842376709,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.01005745679140091,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 4.212667465209961,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.009988750331103802,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 4.113927841186523,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.01165249664336443,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 4.2318115234375,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.012117428705096245,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 4.10915470123291,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.011579003185033798,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 4.3255815505981445,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.009651537984609604,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 4.164999008178711,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.010703184641897678,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 4.060665130615234,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.011164302006363869,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 4.213675022125244,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.011577839031815529,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 4.103652000427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.00991344079375267,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 4.220188140869141,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.008998014032840729,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 4.159979820251465,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.009731501340866089,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 4.18998908996582,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.009425682947039604,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 4.296825408935547,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.01080356165766716,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 4.24896240234375,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.010739771649241447,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 4.263365268707275,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.010330907069146633,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 4.158044815063477,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.009826229885220528,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 4.388248920440674,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.011338205076754093,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 4.111543655395508,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.01183922030031681,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 4.097107887268066,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.010898406617343426,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 4.127046585083008,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.009707853198051453,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 4.18979549407959,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.010297205299139023,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 4.204543113708496,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.012551425956189632,
+ "learning_rate": 0.000435215814386134,
+ "loss": 4.205890655517578,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.012459849938750267,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 4.144447326660156,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.011515826918184757,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 4.303359031677246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.011182085610926151,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 4.206057548522949,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.010857760906219482,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 4.241257667541504,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.010137864388525486,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 4.286746025085449,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.010583772324025631,
+ "learning_rate": 0.000433781621332752,
+ "loss": 4.241023540496826,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.009800084866583347,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 4.144092559814453,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.00956705678254366,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 4.288562774658203,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.009282691404223442,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 4.247763633728027,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.009869658388197422,
+ "learning_rate": 0.000432823382695327,
+ "loss": 4.239850997924805,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.00955921784043312,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 4.287859916687012,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.00971643440425396,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 4.233211517333984,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.010523217730224133,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 4.172140598297119,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.011565430089831352,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 4.198587417602539,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.012401764281094074,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 4.1446733474731445,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.01135436724871397,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 4.317127227783203,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.011842649430036545,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 4.214702606201172,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.012204068712890148,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 4.159806251525879,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.012144668027758598,
+ "learning_rate": 0.000430661245733797,
+ "loss": 4.226191520690918,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.012240448035299778,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 4.2582855224609375,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.010601790621876717,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 4.280828475952148,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.009624366648495197,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 4.164956092834473,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.010414574295282364,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 4.20505952835083,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.01032775267958641,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 4.15788459777832,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.011041350662708282,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 4.106393337249756,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.010158502496778965,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 4.0840067863464355,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.01028145756572485,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 4.080869674682617,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.010874070227146149,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 4.190205097198486,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.009808055125176907,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 4.151027679443359,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.010695279575884342,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 4.2436628341674805,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.011299622245132923,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 4.197666168212891,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.599925518035889,
+ "eval_runtime": 88.2869,
+ "eval_samples_per_second": 27.66,
+ "eval_steps_per_second": 1.733,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.01055294368416071,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 4.034270286560059,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.011086108162999153,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 4.164840221405029,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.010706016793847084,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 4.142515182495117,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.010856487788259983,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 4.062195777893066,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.011131088249385357,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 4.204829216003418,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.011822402477264404,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 4.210328102111816,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.012566019780933857,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.9783544540405273,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.012779535725712776,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 4.193301200866699,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.01306849904358387,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 4.132821083068848,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.013642863370478153,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 4.300430774688721,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.013960986398160458,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 4.102528095245361,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.014857513830065727,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 4.141737937927246,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.01291619148105383,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 4.106183052062988,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.012748660519719124,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 4.114569664001465,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.012253289110958576,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 4.121703147888184,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.012699956074357033,
+ "learning_rate": 0.000423881957237287,
+ "loss": 4.175346374511719,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.01272574532777071,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 4.189696311950684,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.011938376352190971,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 4.125590801239014,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.011633411981165409,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 4.166534423828125,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.01180656161159277,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 4.233831882476807,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.011850356124341488,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 4.203892230987549,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.011305298656225204,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 4.2141523361206055,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.009941862896084785,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 4.292661666870117,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.01119270734488964,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 4.155649185180664,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.01128673180937767,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 4.183152198791504,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.01182626560330391,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 4.166082859039307,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.012211511842906475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 4.201743125915527,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.011132466606795788,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 4.022012710571289,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.011257477104663849,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 4.165955543518066,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.01152152381837368,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 4.124215602874756,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.011120270006358624,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 4.118678092956543,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.009890934452414513,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 4.036169052124023,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.010145381093025208,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 4.318889617919922,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.01120184175670147,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 4.044907569885254,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.009977193549275398,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 4.223349571228027,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.009643469005823135,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 4.236681938171387,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.009447225369513035,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 4.287632465362549,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.0091227563098073,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 4.3016839027404785,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.00914203654974699,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 4.149077415466309,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.008964975364506245,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 4.2197113037109375,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.008991392329335213,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 4.149942398071289,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.00837875995784998,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 4.179250717163086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.008901568129658699,
+ "learning_rate": 0.000417272427439646,
+ "loss": 4.244412899017334,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.009240902960300446,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 4.1416425704956055,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.009424190036952496,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 4.0939836502075195,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.009466785937547684,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 4.0576677322387695,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.009551511146128178,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 4.2101030349731445,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.010699265636503696,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 4.181608200073242,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.010860573500394821,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 4.230496883392334,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.009880377911031246,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 4.137497901916504,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.01001189835369587,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 4.185680389404297,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.009572885930538177,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 4.1577558517456055,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.00987838115543127,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 4.15744161605835,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.010280342772603035,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 4.2221293449401855,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.009996097534894943,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 4.105350494384766,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.00978644099086523,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 4.15170955657959,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.009830066002905369,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 4.203072547912598,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.00916966050863266,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 4.2835373878479,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.00897717010229826,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 4.114962577819824,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.009525633417069912,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 4.246532440185547,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.00921421404927969,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 4.242822647094727,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.008851215243339539,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 4.104422569274902,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.009065881371498108,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 4.194209575653076,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.010189053602516651,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 4.1152472496032715,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.009692609310150146,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 4.184271812438965,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.009057523682713509,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 4.105304718017578,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.009854624047875404,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 4.152454376220703,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.009747317060828209,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 4.1602067947387695,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.010463494807481766,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 4.162583827972412,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.00999192800372839,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 4.3274688720703125,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.010092739015817642,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 4.116909980773926,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.01044598501175642,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 4.2020697593688965,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.551431655883789,
+ "eval_runtime": 85.7406,
+ "eval_samples_per_second": 28.481,
+ "eval_steps_per_second": 1.784,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.009876579977571964,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 4.164706230163574,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.012572702020406723,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 4.014013767242432,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.01369260810315609,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 4.120209693908691,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.014534002169966698,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 4.229783058166504,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.015219368040561676,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 4.105164527893066,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.015543874353170395,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 4.066263198852539,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.0142653938382864,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 4.1460795402526855,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.014713063836097717,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 4.139624118804932,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.014000465162098408,
+ "learning_rate": 0.000407857329622967,
+ "loss": 4.002811908721924,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.013888941146433353,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 4.17318058013916,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.014635670930147171,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 4.152536392211914,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.015171809121966362,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 4.1005167961120605,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.01345653086900711,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 4.135690689086914,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.013164847157895565,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 4.149524211883545,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.013102286495268345,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 4.193521499633789,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.011267323978245258,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 4.1657867431640625,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.011742684058845043,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 4.1137213706970215,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.01192871481180191,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 4.260440826416016,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.013026650995016098,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 4.185743808746338,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.013810441829264164,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 4.054473400115967,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.011503677815198898,
+ "learning_rate": 0.000404858275823277,
+ "loss": 4.185676574707031,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.01065174862742424,
+ "learning_rate": 0.000404607816444578,
+ "loss": 4.013198375701904,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.011239566840231419,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 4.118226528167725,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.012186541222035885,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 4.185783863067627,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.01248143333941698,
+ "learning_rate": 0.000403855947934478,
+ "loss": 4.125214099884033,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.012454871088266373,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 4.112842559814453,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.012563669122755527,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 4.154864311218262,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.012546264566481113,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 4.123438835144043,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.01277274452149868,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 4.163538932800293,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.011936571449041367,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 4.101528167724609,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.01149666029959917,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 4.040679931640625,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.01097810547798872,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 4.136455535888672,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.009719183668494225,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 4.041109085083008,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.00986333005130291,
+ "learning_rate": 0.000401595976318565,
+ "loss": 4.124299049377441,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.00912073440849781,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 4.199904441833496,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.009418101981282234,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 4.151755332946777,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.009513386525213718,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 4.254427909851074,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.009743732400238514,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 4.140321731567383,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.00963711366057396,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 4.124331474304199,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.010302593000233173,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 4.132112979888916,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.011983472853899002,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 4.160226821899414,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.012036876752972603,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 4.095509052276611,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.01125854067504406,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 4.117288589477539,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.011722338385879993,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 4.193219184875488,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.012395180761814117,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 4.120162487030029,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.011256304569542408,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 4.083768367767334,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.01025543361902237,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 4.049867630004883,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.010927550494670868,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 4.256014823913574,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.011399165727198124,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 4.091549396514893,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.010450828820466995,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 4.204381942749023,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.011282199062407017,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 4.153038501739502,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.010513713583350182,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 4.108619213104248,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.010266946628689766,
+ "learning_rate": 0.000396803974909638,
+ "loss": 4.169204235076904,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.010166850872337818,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 4.096996307373047,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.01009226031601429,
+ "learning_rate": 0.000396297942393265,
+ "loss": 4.104363441467285,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.010323838330805302,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 4.194367408752441,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.01049391832202673,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 4.116766929626465,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.011563598178327084,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 4.131492614746094,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.011230280622839928,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 4.169009685516357,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.009461907669901848,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 4.137299060821533,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.010689560323953629,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 4.214145660400391,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.011656688526272774,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 4.166624069213867,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.011863510124385357,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 4.131100177764893,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.010448232293128967,
+ "learning_rate": 0.000394017098798633,
+ "loss": 4.101202964782715,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.010062103159725666,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 4.161185264587402,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.01093286368995905,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 4.042693138122559,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.010100377723574638,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 4.060758113861084,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.010339124128222466,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 4.20787239074707,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.010003306902945042,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 4.067782402038574,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.010493419133126736,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 4.125699996948242,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.010171142406761646,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 4.1621246337890625,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.011140113696455956,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 4.237761497497559,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.567854881286621,
+ "eval_runtime": 84.4609,
+ "eval_samples_per_second": 28.913,
+ "eval_steps_per_second": 1.811,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.01077568531036377,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 4.181587219238281,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.01187620684504509,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 4.131726264953613,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.013522771187126637,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 4.122220993041992,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.013684876263141632,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 4.041871070861816,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.013173004612326622,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.970202922821045,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.012073843739926815,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.8631794452667236,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.01288041565567255,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 4.006192207336426,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.013644886203110218,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 4.2370381355285645,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.013753894716501236,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.9589552879333496,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.012465177103877068,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 4.035869598388672,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.011406811885535717,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 4.080760955810547,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.012969305738806725,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 4.074190139770508,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.013275290839374065,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 4.067647933959961,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.01310755591839552,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 4.096287250518799,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.012664602138102055,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.9706339836120605,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.010615247301757336,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 4.117854118347168,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.01068687904626131,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 4.052369117736816,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.011366557329893112,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 4.138422966003418,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.011061202734708786,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 4.126469612121582,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.011635071597993374,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.968297004699707,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.011073353700339794,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 4.075834274291992,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.011658500880002975,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 4.061251640319824,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.012086226604878902,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 4.1972856521606445,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.012222395278513432,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 4.097524642944336,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.011842718347907066,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 4.149069786071777,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.011621825397014618,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 4.0996832847595215,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.010307750664651394,
+ "learning_rate": 0.00038509205478744,
+ "loss": 4.089378356933594,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.009588676504790783,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 4.066476821899414,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.010809775441884995,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 4.19119930267334,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.012743748724460602,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 4.0750932693481445,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.011777926236391068,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 4.044826507568359,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.010044556111097336,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 4.1896867752075195,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.011860032565891743,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 4.092286109924316,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.012056638486683369,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 4.116976737976074,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.011735365726053715,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 4.148249626159668,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.010875556617975235,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 4.195129871368408,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.010493649169802666,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 4.163764476776123,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.010560980066657066,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 4.122279644012451,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.010246366262435913,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 4.1063714027404785,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.00991209875792265,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 4.08073616027832,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.009893461130559444,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 4.134050369262695,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.009423932991921902,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 4.193440914154053,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.00842279102653265,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 4.058138847351074,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.00924934446811676,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 4.018709182739258,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.009752786718308926,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 4.012757778167725,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.009239202365279198,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 4.1526408195495605,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.009407109580934048,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 4.116143226623535,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.009414082393050194,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 4.100341796875,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.009516751393675804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 4.085671424865723,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.008972907438874245,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 4.1414794921875,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.009903272613883018,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.919322967529297,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.010267534293234348,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 4.123221397399902,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.011000022292137146,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 4.159793376922607,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.012496626935899258,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 4.062358379364014,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.012963531538844109,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 4.136105537414551,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.01102963276207447,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 4.005084037780762,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.010507521219551563,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 4.038727760314941,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.010605179704725742,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 4.083990097045898,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.010178995318710804,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 4.0194501876831055,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.011055036447942257,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 4.088884353637695,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.00979774259030819,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 4.078244209289551,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.00978800468146801,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 4.1270880699157715,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.009614141657948494,
+ "learning_rate": 0.000375827577564042,
+ "loss": 4.101253509521484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.009357909671962261,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 4.099915027618408,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.009440246038138866,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 4.164741039276123,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.008768280036747456,
+ "learning_rate": 0.000375051971546236,
+ "loss": 4.124988079071045,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.009859531186521053,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 4.220903396606445,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.010455301962792873,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 4.152346611022949,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.009803061373531818,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 4.048665523529053,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.009574026800692081,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 4.0821943283081055,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.009048961102962494,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 4.041666507720947,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.010180778801441193,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 4.200588703155518,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.604552745819092,
+ "eval_runtime": 84.8713,
+ "eval_samples_per_second": 28.773,
+ "eval_steps_per_second": 1.803,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.011329853907227516,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.9900457859039307,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.014984005130827427,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 4.07473611831665,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.016141744330525398,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.9724981784820557,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.01465766504406929,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.9986071586608887,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.015666628256440163,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 4.071915626525879,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.014640172012150288,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 4.036019325256348,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.01469016820192337,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 4.05607271194458,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.014554283581674099,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 4.129990577697754,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.014493918046355247,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 4.062219619750977,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.014379715546965599,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 4.062480926513672,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.013458595611155033,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.9154977798461914,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.012699708342552185,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.9537384510040283,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.011132895946502686,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 4.0615739822387695,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.011430074460804462,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 4.143531799316406,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.01210040133446455,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 4.012790679931641,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.012245144695043564,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 4.106157302856445,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.012887321412563324,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 4.015830993652344,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.012803677469491959,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 4.1782965660095215,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.011368817649781704,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 4.072640419006348,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.010358075611293316,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 4.098837852478027,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.010589832440018654,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 4.117313861846924,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.010321256704628468,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 4.218641757965088,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.011689630337059498,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.9875400066375732,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.010908936150372028,
+ "learning_rate": 0.000367268105959126,
+ "loss": 4.027227401733398,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.010584350675344467,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 4.10093879699707,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.01010285597294569,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 4.074665546417236,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.011812037788331509,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 4.034531593322754,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.011600959114730358,
+ "learning_rate": 0.000366226612810024,
+ "loss": 4.113184928894043,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.010876321233808994,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 4.070537567138672,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.009968291968107224,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 4.203442096710205,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.011262387968599796,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 4.0556769371032715,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.01032582949846983,
+ "learning_rate": 0.000365184304613104,
+ "loss": 4.08148193359375,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.010996437631547451,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 4.057895660400391,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.010615769773721695,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 4.124999046325684,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.010909738019108772,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 4.031045913696289,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.010457244701683521,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 4.011176109313965,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.010345135815441608,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 4.030368328094482,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.00980544276535511,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 4.110050678253174,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.009972338564693928,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 4.00167179107666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.010071652941405773,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.9824132919311523,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.010037647560238838,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 4.027332305908203,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.010439334437251091,
+ "learning_rate": 0.000362575056487632,
+ "loss": 4.065634727478027,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.009809018112719059,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 4.128786563873291,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.009842394851148129,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 4.052270889282227,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.00916555617004633,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 4.145816326141357,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.00887344591319561,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 4.095729827880859,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.009776724502444267,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 4.113144397735596,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.009635286405682564,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.942356586456299,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.009097062051296234,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 4.117036819458008,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.009455705061554909,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 4.096042633056641,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.010677946731448174,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.999386787414551,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.009964345954358578,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 4.168429374694824,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.009584939107298851,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 4.039562225341797,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.009133868850767612,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 4.137625694274902,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.009551159106194973,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 4.130338668823242,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.009856447577476501,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 4.096878528594971,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.009551186114549637,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.99261474609375,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.009219125844538212,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 4.010861396789551,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.00918554700911045,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.981205463409424,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.009746214374899864,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 4.120397567749023,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.010356797836720943,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 4.019916534423828,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.010084329172968864,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 4.065004348754883,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.009301368147134781,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 4.122297763824463,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.009626660495996475,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 4.1999053955078125,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.010422289371490479,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.995299816131592,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.011208872310817242,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 4.0599751472473145,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.010681918822228909,
+ "learning_rate": 0.000356031397755195,
+ "loss": 4.077420711517334,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.01082858256995678,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 4.202306270599365,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.010040241293609142,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 4.226383209228516,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.009776259772479534,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 4.0426506996154785,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.009816191159188747,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 4.10113525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.011430559679865837,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.9381566047668457,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.570052623748779,
+ "eval_runtime": 84.6451,
+ "eval_samples_per_second": 28.85,
+ "eval_steps_per_second": 1.808,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.011132825165987015,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 4.0361833572387695,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.012743635103106499,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.924943685531616,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.013857677578926086,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.922771453857422,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.014101691544055939,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 4.15196418762207,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.014825007878243923,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 4.034111976623535,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.01563287526369095,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.931384563446045,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.014393665827810764,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.886596202850342,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.013301689177751541,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 4.0370354652404785,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.012488034553825855,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 4.0232696533203125,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.011063582263886929,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.981332302093506,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.012320222333073616,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.9484620094299316,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.011997769586741924,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 4.041739463806152,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.011553142219781876,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 4.001791954040527,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.011633829213678837,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.917846202850342,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.011593331582844257,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 4.075129508972168,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.011368625797331333,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 4.026906967163086,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.010605502873659134,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 4.071677207946777,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.010172054171562195,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.945216655731201,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.010856307111680508,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.971095323562622,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.009842454455792904,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 4.060256481170654,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.010291303507983685,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.9854986667633057,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.009987153112888336,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 4.0489726066589355,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.010083730332553387,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.998929023742676,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.010800480842590332,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 4.100696086883545,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.010760601609945297,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.942884922027588,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.011136551387608051,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 4.020368576049805,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.01087525486946106,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.970954418182373,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.010280475951731205,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 4.104029655456543,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.010815252549946308,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 4.010892391204834,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.010867281816899776,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 4.0223493576049805,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.010291614569723606,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.979717254638672,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.009741781279444695,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 4.018221855163574,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.011015533469617367,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 4.026700973510742,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.010466188192367554,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 4.101867198944092,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.01033122930675745,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 4.045816898345947,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.010766522027552128,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.996644973754883,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.010843119584023952,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.97576642036438,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.012119865044951439,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.882136821746826,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.012413941323757172,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 4.005892753601074,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.011253178119659424,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 4.066131591796875,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.009961821138858795,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 4.015138626098633,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.010008499026298523,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 4.022852897644043,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.010745653882622719,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.9275522232055664,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.010398740880191326,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 4.0531721115112305,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.01038513332605362,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 4.061971664428711,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.009928431361913681,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 4.143259048461914,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.010413208045065403,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 4.061119556427002,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.01139519177377224,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 4.09278678894043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.011986100114881992,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.947401523590088,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.011387983337044716,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 4.068734169006348,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.009954501874744892,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 4.070131778717041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.00955903809517622,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.9322071075439453,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.010283265262842178,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.9960098266601562,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.010511606931686401,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.9909510612487793,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.009582840837538242,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 4.079389572143555,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.00974298920482397,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 4.138494491577148,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.010466743260622025,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 4.056201457977295,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.010316438972949982,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 4.099299907684326,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.010122894309461117,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 4.239686965942383,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.009907642379403114,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.9789676666259766,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.01069258525967598,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 4.041545391082764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.01007404737174511,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 4.071598052978516,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.009585035033524036,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.9430413246154785,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.010451397858560085,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 4.13792085647583,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.011326397769153118,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.914581775665283,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.011229630559682846,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.9398770332336426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.009682882577180862,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 4.08770227432251,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.009850278496742249,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 4.091458797454834,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.010133294388651848,
+ "learning_rate": 0.000336518346307424,
+ "loss": 4.060453414916992,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.011278501711785793,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 4.080122947692871,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.011924702674150467,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 4.161231994628906,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.013833330944180489,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.9359490871429443,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.596139907836914,
+ "eval_runtime": 86.0775,
+ "eval_samples_per_second": 28.37,
+ "eval_steps_per_second": 1.777,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.013592035509645939,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.9522242546081543,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.013502624817192554,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 4.0113677978515625,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.013949453830718994,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.9946117401123047,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.014419623650610447,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.9795098304748535,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.01568395458161831,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 4.091269493103027,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.015030908398330212,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 4.062928676605225,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.013131589628756046,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 4.0576863288879395,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.013200934045016766,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.9778010845184326,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.013214852660894394,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 4.0181884765625,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.012748941779136658,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.8231043815612793,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.011799106374382973,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 4.045605659484863,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.011282660067081451,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.9676876068115234,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.0109232347458601,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.9386894702911377,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.011680151335895061,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.960446357727051,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.011029785498976707,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 4.071208477020264,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.010873311199247837,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.910928249359131,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.010651886463165283,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 4.041978359222412,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.010444678366184235,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 4.054442405700684,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.010614353232085705,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 4.05772590637207,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.01047259010374546,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.873579502105713,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.009985635057091713,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.993783712387085,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.010010694153606892,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.984926223754883,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.010369695723056793,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 4.085610389709473,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.010580260306596756,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.949125289916992,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.01043667085468769,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.9963903427124023,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.010741197504103184,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 4.053349018096924,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.010334794409573078,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 4.120090007781982,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.01040970254689455,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.8926737308502197,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.010715796612203121,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.9743237495422363,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.011393639259040356,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.98507022857666,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.010942629538476467,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.898818016052246,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.010325280018150806,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.8614513874053955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.010317712090909481,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.939861297607422,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.010228334926068783,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 4.04915189743042,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.010809719562530518,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 4.05153751373291,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.010143210180103779,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 4.1973876953125,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.010687801986932755,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.9684720039367676,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.013338417746126652,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 4.0303544998168945,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.014791577123105526,
+ "learning_rate": 0.000325372061241796,
+ "loss": 4.093402862548828,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.013393090106546879,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 4.098799228668213,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.012639272026717663,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.9800333976745605,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.011467873118817806,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 4.151701927185059,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.011315679177641869,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 4.113883972167969,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.011210434138774872,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.9912962913513184,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.01087957713752985,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.967313766479492,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.011848476715385914,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.978968620300293,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.011160468682646751,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 4.03514289855957,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.009814568795263767,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 4.026996612548828,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.009992859326303005,
+ "learning_rate": 0.000322712903929477,
+ "loss": 4.024201393127441,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.010100461542606354,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.955676555633545,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.009547922760248184,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.937321662902832,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.010318727232515812,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 4.056231498718262,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.009653892368078232,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 4.024428844451904,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.009993361309170723,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.950716018676758,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.01103970780968666,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.945801258087158,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.011700308881700039,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.9194111824035645,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.012860790826380253,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 4.030028343200684,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.011987055651843548,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.90966796875,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.010467334650456905,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.9390382766723633,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.010487129911780357,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.9514942169189453,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.010463234037160873,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 4.016255855560303,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.01121378131210804,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 4.002895355224609,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.010914308950304985,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 4.018136024475098,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.010348659940063953,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 4.03448486328125,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.009568385779857635,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 4.069923400878906,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.009966057725250721,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.914461135864258,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.00994907971471548,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.971266269683838,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.009441893547773361,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 4.057741165161133,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.009497676976025105,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 4.140096664428711,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.010003750212490559,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 4.040005207061768,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.009717513807117939,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 4.030487537384033,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.011040066368877888,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 4.065431594848633,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.603287696838379,
+ "eval_runtime": 85.8724,
+ "eval_samples_per_second": 28.438,
+ "eval_steps_per_second": 1.782,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.011107868514955044,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 4.011427402496338,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.014340977184474468,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.8326802253723145,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.014210023917257786,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 4.009984016418457,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.013904218561947346,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 4.116009712219238,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.014743667095899582,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.8629159927368164,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.013711526058614254,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.9335215091705322,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.013057132251560688,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.908352851867676,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.012818509712815285,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.9947872161865234,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.012549753300845623,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.8811845779418945,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.01136186346411705,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.978353261947632,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.011574970558285713,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.9344143867492676,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.011323983781039715,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.9808664321899414,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.010912686586380005,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 4.017498016357422,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.010812945663928986,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.88407039642334,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.01065861713141203,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.9926493167877197,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.01069044228643179,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 4.0090131759643555,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.010497510433197021,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.935544967651367,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.011448034085333347,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.99393892288208,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.011814731173217297,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.996981620788574,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.012805991806089878,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.990048408508301,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.013853369280695915,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.8463478088378906,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.014118191786110401,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.9070587158203125,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.012672449462115765,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 4.021424293518066,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.011798200197517872,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.965221881866455,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.011141994036734104,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.83060622215271,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.011542421765625477,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.9407637119293213,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.014908739365637302,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 4.01406717300415,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.014702459797263145,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 4.043688774108887,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.011113990098237991,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 4.042995929718018,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.011973917484283447,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.917491912841797,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.014942649751901627,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.9875829219818115,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.014178650453686714,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 4.054706573486328,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.012302055023610592,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.929983615875244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.01186611969023943,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.945169687271118,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.011537456884980202,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 4.049633026123047,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.011318233795464039,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.926973342895508,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.010335283353924751,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.977968692779541,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.010157988406717777,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 4.040463447570801,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.010198986157774925,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.876478433609009,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.011112391017377377,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.9707107543945312,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.011649145744740963,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 4.014248847961426,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.011027307249605656,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.9882264137268066,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.010242706164717674,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.8625729084014893,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.009813128970563412,
+ "learning_rate": 0.000304866093757771,
+ "loss": 4.065174102783203,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.010923790745437145,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 4.07213830947876,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.01187705434858799,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 4.038900375366211,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.011698390357196331,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.950251579284668,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.010257775895297527,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 4.068069934844971,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.010501123033463955,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.9558424949645996,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.011701171286404133,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.968338966369629,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.012152766808867455,
+ "learning_rate": 0.000303,
+ "loss": 4.086882591247559,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.011028476059436798,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.9539551734924316,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.011379408650100231,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.8860912322998047,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.010008374229073524,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 4.095733642578125,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.011070288717746735,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.9810352325439453,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.012155449017882347,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.969482898712158,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.01056651584804058,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 4.042746543884277,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.010865111835300922,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.9409804344177246,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.010306884534657001,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 4.078839302062988,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.00993148609995842,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 4.047484397888184,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.009858231991529465,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.974020004272461,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.009922944940626621,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.9741368293762207,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.010188239626586437,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.920858860015869,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.009717893786728382,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 4.0424394607543945,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.009679177775979042,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 4.004914283752441,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.010174429975450039,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.975625991821289,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.010131667368113995,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.902825355529785,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.009707369841635227,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 4.042960166931152,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.009920211508870125,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.966573476791382,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.009672066196799278,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.93103289604187,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.010291875340044498,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.9984607696533203,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.011761458590626717,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 4.043583869934082,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.599700450897217,
+ "eval_runtime": 87.3222,
+ "eval_samples_per_second": 27.965,
+ "eval_steps_per_second": 1.752,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.011074044741690159,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.9737820625305176,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.01350400224328041,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.9737653732299805,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.015932954847812653,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.939518451690674,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.013929862529039383,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.8696722984313965,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.010929702781140804,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.791276454925537,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.010906493291258812,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.995974063873291,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.011713053099811077,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.8848793506622314,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.011010564863681793,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.9641356468200684,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.010945162735879421,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.9572525024414062,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.0103533286601305,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.9543161392211914,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.011024084873497486,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.909083843231201,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.011396311223506927,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.903420925140381,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.009475707076489925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 4.0093092918396,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.010503377765417099,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.8529200553894043,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.011094511486589909,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.9325509071350098,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.010803001001477242,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.8839521408081055,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.010747581720352173,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 4.001172065734863,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.0103462478145957,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.8773140907287598,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.010612964630126953,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.7979984283447266,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.011453553102910519,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 4.045482635498047,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.011249526403844357,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 4.061059474945068,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.01041093748062849,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.913604259490967,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.010158784687519073,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.876260280609131,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.01079870481044054,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.841350555419922,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.01098064798861742,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.9297823905944824,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.01065402664244175,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 4.0244903564453125,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.010416185483336449,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.90169095993042,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.010907797142863274,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.9648971557617188,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.01072609331458807,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.910158157348633,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.010549080558121204,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.8769569396972656,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.012598100118339062,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.861464500427246,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.011794711463153362,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.894925117492676,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.011026293970644474,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.969573497772217,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.010959511622786522,
+ "learning_rate": 0.000288343693342466,
+ "loss": 4.111845970153809,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.011551665142178535,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 4.003201961517334,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.012172834947705269,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.964582920074463,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.013538642786443233,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 4.052495002746582,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.014221726916730404,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.9965338706970215,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.012400173582136631,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 4.001407623291016,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.01180094014853239,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.856201410293579,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.011389389634132385,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.9924964904785156,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.0107188755646348,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 4.04386043548584,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.010961013846099377,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.9631590843200684,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.010923122987151146,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.953301191329956,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.01061448734253645,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.9261679649353027,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.010924954898655415,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.9537997245788574,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.01066056452691555,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.9342002868652344,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.009984925389289856,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.988720417022705,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.010581002570688725,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.970776081085205,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.011563191190361977,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.966728925704956,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.010714497417211533,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.9598939418792725,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.011376265436410904,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.8844943046569824,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.011425293982028961,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.8499813079833984,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.01086503267288208,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.8147051334381104,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.010077040642499924,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 4.017036437988281,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.010627911426126957,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.9156417846679688,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.010287647135555744,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.9441888332366943,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.01014758087694645,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 4.044958591461182,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.011006060056388378,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.797041893005371,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.011467166244983673,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.9570345878601074,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.010885256342589855,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.7906641960144043,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.010804297402501106,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.971190929412842,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.011160610243678093,
+ "learning_rate": 0.000280627938758204,
+ "loss": 4.060389518737793,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.009990973398089409,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.917522430419922,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.00998917780816555,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 4.013736248016357,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.011042946018278599,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.799297332763672,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.010925267823040485,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.94362211227417,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.011051100678741932,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 4.001194953918457,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.010502695105969906,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 4.134047508239746,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.010572216473519802,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.9747796058654785,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.010007299482822418,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 4.044950485229492,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.011629229411482811,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 4.084447860717773,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.588645935058594,
+ "eval_runtime": 85.4714,
+ "eval_samples_per_second": 28.571,
+ "eval_steps_per_second": 1.79,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.011689464561641216,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.9075310230255127,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.014014136046171188,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 4.014795303344727,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.011509428732097149,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.9163098335266113,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.01121868658810854,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.9568498134613037,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.011642883531749249,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.9395787715911865,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.011057519353926182,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.8263654708862305,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.010972758755087852,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.9097914695739746,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.010745537467300892,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.854860544204712,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.011182599700987339,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 4.041356563568115,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.012797663919627666,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.830272912979126,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.012043065391480923,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.8452553749084473,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.013106790371239185,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.8310980796813965,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.013427415862679482,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.9251890182495117,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.013122874312102795,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.957672119140625,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.012872692197561264,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.878587245941162,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.011384270153939724,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.854142665863037,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.011137540452182293,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.9605469703674316,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.011310633271932602,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.940114974975586,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.01179711427539587,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.938386917114258,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.011187809519469738,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.944530487060547,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.011170677840709686,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.9430172443389893,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.010550163686275482,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.7957606315612793,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.010384478606283665,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.9056930541992188,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.010651282034814358,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.8139357566833496,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.0107306819409132,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 4.003175735473633,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.011411326937377453,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.919771432876587,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.01133117638528347,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.9188013076782227,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.01031514909118414,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.932736873626709,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.009824352338910103,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 4.015635967254639,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.01049763523042202,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.9969911575317383,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.011549605056643486,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.834160804748535,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.011060566641390324,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.8837857246398926,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.009798712097108364,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.949749231338501,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.010602886788547039,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 4.000707149505615,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.00990439672023058,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.885244131088257,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.009604494087398052,
+ "learning_rate": 0.00026868712586269,
+ "loss": 4.074821472167969,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.009423203766345978,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 4.000557899475098,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.0098728621378541,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.9387454986572266,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.010560811497271061,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 4.009432792663574,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.009980306960642338,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.896604061126709,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.009540977887809277,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.9122257232666016,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.010007701814174652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 4.008612155914307,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.011056117713451385,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 4.038888931274414,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.011715954169631004,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.9493355751037598,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.012441720813512802,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.9336190223693848,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.01239983644336462,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.800154209136963,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.010556857101619244,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.996401309967041,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.010134321637451649,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.9100875854492188,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.010460550896823406,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.892467498779297,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.010920022614300251,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.8093631267547607,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.010078933089971542,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.9534246921539307,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.010934804566204548,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.8959293365478516,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.009791049174964428,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 4.032570838928223,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.009695373475551605,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.872560977935791,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.010239834897220135,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.898049831390381,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.011325928382575512,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 4.000666618347168,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.010393583215773106,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.916602611541748,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.010357106104493141,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 4.027385711669922,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.010646609589457512,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.87898850440979,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.010656338185071945,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.9381659030914307,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.010371637530624866,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.878948211669922,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.010396607220172882,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 4.031810760498047,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.0101687116548419,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.986933708190918,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.009972655214369297,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.8843746185302734,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.010430166497826576,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.9313480854034424,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.010458354838192463,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.953433036804199,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.009931962937116623,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.991569995880127,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.010947883129119873,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.9206581115722656,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.010655615478754044,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.891333818435669,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.01125908549875021,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.8434605598449707,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.011453676968812943,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.9852113723754883,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.012835046276450157,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.761152744293213,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.577749729156494,
+ "eval_runtime": 86.0183,
+ "eval_samples_per_second": 28.389,
+ "eval_steps_per_second": 1.779,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.011688253842294216,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.9019522666931152,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.013192981481552124,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.897005796432495,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.012870961800217628,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.8835902214050293,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.012850126251578331,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.9463181495666504,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.013198571279644966,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.9062042236328125,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.013023433275520802,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.8452041149139404,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.011843542568385601,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.8098270893096924,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.011327624320983887,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.9676313400268555,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.011951684951782227,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.9325199127197266,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.012988871894776821,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.9741406440734863,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.01474353950470686,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.954935073852539,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.015253514051437378,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.9670064449310303,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.013718944974243641,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.9320693016052246,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.011357603594660759,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.7773828506469727,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.01170849148184061,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.8851189613342285,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.01428207941353321,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.8826663494110107,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.016005778685212135,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.9117560386657715,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.014198106713593006,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.8031065464019775,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.011704663746058941,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.891038417816162,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.010909215547144413,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.8263349533081055,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.012448816560208797,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.9024434089660645,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.013269470073282719,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.814897298812866,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.01163567416369915,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.853396415710449,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.011129403486847878,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.8798186779022217,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.011933285742998123,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.8234798908233643,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.013377312570810318,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.8552844524383545,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.011400080285966396,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.9409127235412598,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.011178918182849884,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.880861520767212,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.013041479513049126,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.8637871742248535,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.012902776710689068,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.9051785469055176,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.01097793783992529,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.8485116958618164,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.01198726985603571,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.833984851837158,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.012412553653120995,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.835758686065674,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.011381368152797222,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.7852823734283447,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.010742254555225372,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.9635236263275146,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.010208575055003166,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.9532880783081055,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.010875599458813667,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.923335075378418,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.010645967908203602,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.9628233909606934,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.009820123203098774,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 4.036235809326172,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.010748740285634995,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.8888001441955566,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.010759779252111912,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.888763427734375,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.010816200636327267,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.9231839179992676,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.010659001767635345,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.751230239868164,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.010139607824385166,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.8911890983581543,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.010190426371991634,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.9361610412597656,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.01053356472402811,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.820432186126709,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.010453339666128159,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.9013843536376953,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.010975971817970276,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.941499710083008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.011470776982605457,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.9472250938415527,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.01132800243794918,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.934760570526123,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.010188699699938297,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.940852642059326,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.011588476598262787,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.881300687789917,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.011445710435509682,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.8878631591796875,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.010066111572086811,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 4.051698684692383,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.011515095829963684,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.937252998352051,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.012769580818712711,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.898301601409912,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.01235460489988327,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.820993661880493,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.010864713229238987,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.741528272628784,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.011177250184118748,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.958587646484375,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.011447126977145672,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.8475422859191895,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.011529373936355114,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.847842216491699,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.010466120205819607,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.8615760803222656,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.010162622667849064,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.910557270050049,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.010626879520714283,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.9372987747192383,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.010526949539780617,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 4.033852577209473,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.010240721516311169,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.9674649238586426,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.010456124320626259,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.978588581085205,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.010770171880722046,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.975640058517456,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.010375156067311764,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.970576763153076,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.009781519882380962,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.9403347969055176,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.010984783992171288,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.817472457885742,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.012089774943888187,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.994081974029541,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.603480815887451,
+ "eval_runtime": 84.8833,
+ "eval_samples_per_second": 28.769,
+ "eval_steps_per_second": 1.802,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.011733257211744785,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.9356606006622314,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.01330010499805212,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.8383421897888184,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.012003310024738312,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.8812572956085205,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.0123556824401021,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.8535850048065186,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.01161467470228672,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.929421901702881,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.012014579959213734,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.7582807540893555,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.01118547935038805,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.9876742362976074,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.011344132013618946,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.864891529083252,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.01170346885919571,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.817432403564453,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.011647871695458889,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.89971923828125,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.011546367779374123,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.90244722366333,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.011550342664122581,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.809117317199707,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.011258913204073906,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.905025005340576,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.011282610706984997,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.779602527618408,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.011639866046607494,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.9670777320861816,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.010768581181764603,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.958116054534912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.0109172398224473,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.8190770149230957,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.011898413300514221,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.856595039367676,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.011432542465627193,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.7329049110412598,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.01097177155315876,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.955566167831421,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.011556052602827549,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.804487705230713,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.01179601065814495,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.781385898590088,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.011609538458287716,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.9597253799438477,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.010918320156633854,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.884592056274414,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.01119279209524393,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.835721492767334,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.010532518848776817,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.9814205169677734,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.011080932803452015,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.8226406574249268,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.010538287460803986,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 4.029593467712402,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.011465945281088352,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.960726261138916,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.0108618950471282,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.8980398178100586,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.010339999571442604,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.983405113220215,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.010117891244590282,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.9767355918884277,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.010386128909885883,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.9415929317474365,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.010351025499403477,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.794034719467163,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.010884677991271019,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.9224600791931152,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.010773873887956142,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.882521390914917,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.010557166300714016,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.8566958904266357,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.010536021552979946,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 4.0177226066589355,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.010782448574900627,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.9123826026916504,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.012259316630661488,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.9082179069519043,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.012442185543477535,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.935253620147705,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.011048306711018085,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.8191399574279785,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.01034141331911087,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.956024646759033,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.011038210242986679,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.8852219581604004,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.011482541449368,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.8552491664886475,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.010966906324028969,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.9505701065063477,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.010703622363507748,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.8711719512939453,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.010880622081458569,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.874210834503174,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.011435945518314838,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.8634233474731445,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.011190537363290787,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.834467649459839,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.00980424229055643,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.851818084716797,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.010341738350689411,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.9530246257781982,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.009817896410822868,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.9131112098693848,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.01047087088227272,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.817899703979492,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.010247116908431053,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.935760974884033,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.010032808408141136,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.9065394401550293,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.009959318675100803,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.9358553886413574,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.010545285418629646,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.9537429809570312,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.010459063574671745,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.868861198425293,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.009678610600531101,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.9771389961242676,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.010761966928839684,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.923041343688965,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.010677576065063477,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.9786107540130615,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.010676741600036621,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.8509178161621094,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.01141789648681879,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.9142541885375977,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.010593809187412262,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.9438939094543457,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.010112748481333256,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.7702059745788574,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.010748161002993584,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.838205337524414,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.010649033822119236,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.751556396484375,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.010314499028027058,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.9019546508789062,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.010986926965415478,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.820539951324463,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.010041169822216034,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.8246195316314697,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.012162555009126663,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.962362766265869,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.629899978637695,
+ "eval_runtime": 85.481,
+ "eval_samples_per_second": 28.568,
+ "eval_steps_per_second": 1.79,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.011511481367051601,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.815683364868164,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.012574407272040844,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.7753467559814453,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.012173766270279884,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.8002219200134277,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.01307229045778513,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.6498148441314697,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.011586854234337807,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.723379611968994,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.011305336840450764,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.8636040687561035,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.010770306922495365,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.863016128540039,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.01125170849263668,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.881840705871582,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.012030471116304398,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.8817765712738037,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.011889533139765263,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.8045623302459717,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.0123107535764575,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.8879432678222656,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.011461477726697922,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.77366304397583,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.011112198233604431,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.8331174850463867,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.011280504986643791,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.9428482055664062,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.01064289454370737,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.8866519927978516,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.010694642551243305,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.9101250171661377,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.01199188269674778,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.7445998191833496,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.010890398174524307,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.880009651184082,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.010986912995576859,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.858964204788208,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.012368667870759964,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.866872787475586,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.012999574653804302,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.869506359100342,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.0119540486484766,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.8895955085754395,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.011919611133635044,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.8713624477386475,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.010563733987510204,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.854360580444336,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.01088758185505867,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.9863433837890625,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.011296373791992664,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.728609561920166,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.011117997579276562,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.900608539581299,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.010690092109143734,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.773066282272339,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.011517496779561043,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.908097743988037,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.011297475546598434,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.785518169403076,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.011774522252380848,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.951240301132202,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.010511872358620167,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.898623466491699,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.01159161888062954,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.7450759410858154,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.012622535228729248,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.8740897178649902,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.01106981374323368,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.7869417667388916,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.010965615510940552,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.7341647148132324,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.011208019219338894,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.9084837436676025,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.010710948146879673,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.9404633045196533,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.010723879560828209,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.8540186882019043,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.011042962782084942,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.84421706199646,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.011002677492797375,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.8881781101226807,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.012812180444598198,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.8858859539031982,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.011376631446182728,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.768159866333008,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.010488759726285934,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.8189263343811035,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.010805865749716759,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.807474374771118,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.010717516764998436,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.8457653522491455,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.011142940260469913,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.9563636779785156,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.01116760354489088,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.745244264602661,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.010558689013123512,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.842268228530884,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.01111495029181242,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.7646007537841797,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.011153158731758595,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.875667095184326,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.01162844430655241,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.8176357746124268,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.010929273441433907,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.8745524883270264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.010437211021780968,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.801875114440918,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.011714253574609756,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.8457753658294678,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.01128415297716856,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.849414348602295,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.0105520598590374,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.8638744354248047,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.010928453877568245,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.7805519104003906,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.01154544297605753,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.8063130378723145,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.010886175557971,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.8018932342529297,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.010635017417371273,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.790377616882324,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.010519898496568203,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.983368396759033,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.011441218666732311,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.7907943725585938,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.01221360545605421,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.765820026397705,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.010830710642039776,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 4.003534317016602,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.01135318074375391,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.8551559448242188,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.014823293313384056,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.9815213680267334,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.013025115244090557,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.924241304397583,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.0101553276181221,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 4.0723443031311035,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.012571720406413078,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.8909096717834473,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.013566468842327595,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.8996996879577637,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.014272765256464481,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.8539466857910156,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.620414733886719,
+ "eval_runtime": 85.2434,
+ "eval_samples_per_second": 28.647,
+ "eval_steps_per_second": 1.795,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.012074367143213749,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.8410253524780273,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.014286254532635212,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.7875261306762695,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.017569642513990402,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.8226816654205322,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.016590511426329613,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.938128709793091,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.012882485054433346,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.7010138034820557,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.014531395398080349,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.7836709022521973,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.015781082212924957,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.8485186100006104,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.015504764392971992,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.7098755836486816,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.012655007652938366,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.8346376419067383,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.01290210336446762,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.769796848297119,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.015385285019874573,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.861654758453369,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.01429051160812378,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.8049275875091553,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.01214558631181717,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.853189468383789,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.015257023274898529,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.8485867977142334,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.01401588972657919,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.742671251296997,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.011879785917699337,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.802128314971924,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.012397093698382378,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.7346596717834473,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.01456447597593069,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.776618480682373,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.014282099902629852,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.673670530319214,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.011789718642830849,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.8645644187927246,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.014003564603626728,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.8703198432922363,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.013203601352870464,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.832751989364624,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.011776245199143887,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.697592258453369,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.011362370103597641,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.6604275703430176,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.011934771202504635,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.849954128265381,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.011321560479700565,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.8939003944396973,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.011278622783720493,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.80043888092041,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.011219988577067852,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.72088623046875,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.011986256577074528,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.853048801422119,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.010439028032124043,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 4.006741046905518,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.010670551098883152,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.8120055198669434,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.010852249339222908,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.7261171340942383,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.011269894428551197,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.717071533203125,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.010703012347221375,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.8839147090911865,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.01081076730042696,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.789668560028076,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.01119368989020586,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.7824530601501465,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.010503538884222507,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.9010872840881348,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.010646075941622257,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.7963762283325195,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.010476659052073956,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.815866708755493,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.010914883576333523,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.7410686016082764,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.010305505245923996,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.832772731781006,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.010710855014622211,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.941805839538574,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.010200196877121925,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.8245506286621094,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.01110541820526123,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.721076488494873,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.010649279691278934,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.9620189666748047,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.011666350066661835,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.718165874481201,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.010778360068798065,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.8721981048583984,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.012113813310861588,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.6971333026885986,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.011371941305696964,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.82936954498291,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.011019962839782238,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.854365825653076,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.011195488274097443,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.876722812652588,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.011133303865790367,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.854990243911743,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.010802343487739563,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.8632092475891113,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.010828115046024323,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.7351198196411133,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.010700947605073452,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.86088228225708,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.010590414516627789,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.8715527057647705,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.011087710037827492,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.8589677810668945,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.011460598558187485,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.822814464569092,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.010769214481115341,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.8802614212036133,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.010772728361189365,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.7555761337280273,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.011214488185942173,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.8383407592773438,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.010878588072955608,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.7413854598999023,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.010260067880153656,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.800255060195923,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.010783256031572819,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.7339282035827637,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.010300736874341965,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.9011282920837402,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.01050292793661356,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.8408572673797607,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.010419820435345173,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.929624557495117,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.010534441098570824,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.8389062881469727,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.009849554859101772,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.973883628845215,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.009878809563815594,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.9080922603607178,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.010315601713955402,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.710033655166626,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.012090682983398438,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.914968490600586,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.6000237464904785,
+ "eval_runtime": 84.3949,
+ "eval_samples_per_second": 28.935,
+ "eval_steps_per_second": 1.813,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.01098595466464758,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.8293018341064453,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.012146810069680214,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.6914591789245605,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.012144665233790874,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 3.672290802001953,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.010488035157322884,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.752763271331787,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.011291133239865303,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 3.8085179328918457,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.011676127091050148,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 3.7776341438293457,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.011975069530308247,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.7317285537719727,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.011667255312204361,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 3.7061963081359863,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.012225139886140823,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 3.856548309326172,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.011574016883969307,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.844625473022461,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.011139079928398132,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.746826171875,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.011695715598762035,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.7915165424346924,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.011564397253096104,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.849781036376953,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.010902253910899162,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 3.8721957206726074,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.01267972681671381,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 3.7196736335754395,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.011358649469912052,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.919512987136841,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.011036410927772522,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.8114471435546875,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.011998327448964119,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.8243329524993896,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.011142533272504807,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.8639392852783203,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.010713535360991955,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.769162178039551,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.011486412025988102,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 3.7145237922668457,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.013365180231630802,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.6966552734375,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.012505118735134602,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 3.7208471298217773,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.010776310227811337,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.8106448650360107,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.013044707477092743,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.643601894378662,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.013414500281214714,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.742617607116699,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.012324818409979343,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.9633641242980957,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.011112147942185402,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.7014031410217285,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.011222519911825657,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.7302393913269043,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.011425459757447243,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.6111724376678467,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.011259129270911217,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.6706461906433105,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.011032751761376858,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.8024699687957764,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.010749325156211853,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.8828892707824707,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.011131943203508854,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.851710319519043,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.010242550633847713,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.858922004699707,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.011025975458323956,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.830212116241455,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.011354555375874043,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.8487133979797363,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.011285083368420601,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.7806899547576904,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.009995102882385254,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.825943946838379,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.011260299943387508,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.7661871910095215,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.010885214433073997,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.728891372680664,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.010914749465882778,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.651210069656372,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.010972256772220135,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.880051612854004,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.011609644629061222,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.792019844055176,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.01076072920113802,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.759305715560913,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.011043784208595753,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.7739481925964355,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.010551003739237785,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.892974853515625,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.010709116235375404,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.97403883934021,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.011284755542874336,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.682202100753784,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.011439262889325619,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.817227363586426,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.010503373108804226,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.696104049682617,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.010913492180407047,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.717217206954956,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.010813022963702679,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.9186856746673584,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.010504172183573246,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.706868886947632,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.010735583491623402,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.803366184234619,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.010751239955425262,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.7577362060546875,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.01045430451631546,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.824903964996338,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.010554700158536434,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.803471803665161,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.010459354147315025,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.828946828842163,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.010894916951656342,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.8558573722839355,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.010433739051222801,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.858416795730591,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.010902623645961285,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.7386794090270996,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.010467786341905594,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.8269565105438232,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.01069339644163847,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.7873644828796387,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.010542310774326324,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.7905020713806152,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.010565508157014847,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.841482162475586,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.010608013719320297,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.776552677154541,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.010551434010267258,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.815901279449463,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.011121736839413643,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.759938955307007,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.01168640237301588,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.6711742877960205,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.010713277384638786,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.8046345710754395,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.01274355873465538,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.8205442428588867,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.653851509094238,
+ "eval_runtime": 84.413,
+ "eval_samples_per_second": 28.929,
+ "eval_steps_per_second": 1.813,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.011835121549665928,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 3.8538994789123535,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.012358210980892181,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 3.68070387840271,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.010982801206409931,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 3.7115354537963867,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.011809226125478745,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 3.733523368835449,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.012028186582028866,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.8103458881378174,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.011706877499818802,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 3.8124942779541016,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.013214824721217155,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.7883641719818115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.011493456549942493,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 3.7750420570373535,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.010648688301444054,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 3.8362419605255127,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.011935052461922169,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 3.705594539642334,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.010910818353295326,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 3.7417006492614746,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.011039982549846172,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 3.7649331092834473,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.011560715734958649,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 3.787877082824707,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.010883931070566177,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 3.7402868270874023,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.011613317765295506,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 3.6596624851226807,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.010946841910481453,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.8373587131500244,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.011364697478711605,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 3.835782051086426,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.010879823006689548,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 3.884202718734741,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.011060351505875587,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 3.8537373542785645,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.01056839432567358,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 3.7272658348083496,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.010968873277306557,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.8164658546447754,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.010696220211684704,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 3.824345588684082,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.010746701620519161,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 3.7690653800964355,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.010833295062184334,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.7120180130004883,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.010505889542400837,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 3.863776445388794,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.010879415087401867,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 3.8087613582611084,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.010765374638140202,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.7535347938537598,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.010739347897469997,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 3.7427191734313965,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.011077574454247952,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 3.8276665210723877,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.010721394792199135,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 3.8159728050231934,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.01090798620134592,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.8832767009735107,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.010897727683186531,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.834407329559326,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.011375446803867817,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.816559076309204,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.012578863650560379,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 3.8119935989379883,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.010998054407536983,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.7607805728912354,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.010973364114761353,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.8520750999450684,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.012247582897543907,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.7228598594665527,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.011055019684135914,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.8229427337646484,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.011345181614160538,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 3.7088441848754883,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.010623784735798836,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.842665672302246,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.011510200798511505,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.7346155643463135,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.01085889432579279,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.9091005325317383,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.011483512818813324,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.6774628162384033,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.01169754657894373,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.805418014526367,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.010753422044217587,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.8417539596557617,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.010333525948226452,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.940634250640869,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.011270534247159958,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.8078689575195312,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.010964984074234962,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.5973827838897705,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.011286620981991291,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.827928066253662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.010751689784228802,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 3.790165424346924,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.01152054313570261,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.8387513160705566,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.011646322906017303,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.822841167449951,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.011617179028689861,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.8654866218566895,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.010603098198771477,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.724824905395508,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.01164249423891306,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.8022966384887695,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.011870439164340496,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.839895009994507,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.011322998441755772,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.81400728225708,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.011069455184042454,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.7506797313690186,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.012023651972413063,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.862222671508789,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.010537683963775635,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.828303337097168,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.011298646219074726,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.828731060028076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.011739256791770458,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.810626745223999,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.010453609749674797,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.7593984603881836,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.011474397033452988,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.7422327995300293,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.01103881374001503,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.761174201965332,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.01095945481210947,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.726083755493164,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.010641214437782764,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.7877697944641113,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.010943214409053326,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.672283411026001,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.010196125134825706,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.801036834716797,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.010735539719462395,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.7579617500305176,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.010973691008985043,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.720263957977295,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.012658403255045414,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.834487199783325,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.622317314147949,
+ "eval_runtime": 85.6075,
+ "eval_samples_per_second": 28.526,
+ "eval_steps_per_second": 1.787,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.012221621349453926,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 3.7627463340759277,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.013135075569152832,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 3.7844247817993164,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.013170014135539532,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 3.818237781524658,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.011589646339416504,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 3.8020315170288086,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.01251091156154871,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 3.7725701332092285,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.012891864404082298,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 3.770443916320801,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.011410247534513474,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 3.7357795238494873,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.011896900832653046,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 3.8181862831115723,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.013186860829591751,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 3.8368823528289795,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.011350966058671474,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 3.865201711654663,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.011509046889841557,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 3.8134939670562744,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.012778270058333874,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 3.7049672603607178,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.011080496944487095,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 3.585240602493286,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.011986466124653816,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 3.5464162826538086,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.01239814329892397,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 3.869504928588867,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.010922676883637905,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 3.689619541168213,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.011846546083688736,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 3.718783378601074,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.0132194384932518,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 3.7223048210144043,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.011813106946647167,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 3.72087025642395,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.011289218440651894,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 3.744448184967041,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.012738044373691082,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 3.7712485790252686,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.011673792265355587,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 3.772463798522949,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.010565067641437054,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 3.8961498737335205,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.012948057614266872,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 3.784403085708618,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.01291747111827135,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 3.9311203956604004,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.010577475652098656,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 3.8164238929748535,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.01205415278673172,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 3.7477498054504395,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.013052346184849739,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 3.6452393531799316,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.010738392360508442,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 3.863175392150879,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.011833506636321545,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 3.6790335178375244,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.012708249501883984,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 3.7472329139709473,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.011452332139015198,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 3.795750379562378,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.011169432662427425,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 3.7254080772399902,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.011717136017978191,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 3.824097156524658,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.01113469060510397,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 3.804236888885498,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.012446170672774315,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.771315097808838,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.011456575244665146,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 3.7870168685913086,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.01099369116127491,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 3.7555341720581055,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.01148857269436121,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 3.718329429626465,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.011267481371760368,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 3.795982837677002,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.010826817713677883,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 3.8777594566345215,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.012914626859128475,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.780271053314209,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.011905672028660774,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 3.667747974395752,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.010853438638150692,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.8123393058776855,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.01198440883308649,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 3.669010639190674,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.011725930497050285,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 3.690924644470215,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.011250975541770458,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.8481712341308594,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.012081993743777275,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.836412191390991,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.011358530260622501,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.714931011199951,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.011656605638563633,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 3.779855251312256,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.011361461132764816,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 3.750562906265259,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.01111642736941576,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 3.677558422088623,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.011434067972004414,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.8261594772338867,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.01109747588634491,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 3.7544002532958984,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.01116955280303955,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.8112525939941406,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.011463560163974762,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 3.823795795440674,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.010840185917913914,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.7840795516967773,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.011257193982601166,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 3.8014907836914062,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.010883461683988571,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.934812068939209,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.011461238376796246,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.7989964485168457,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.010654035955667496,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.813706398010254,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.010837544687092304,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.849246025085449,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.011188001371920109,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 3.7655930519104004,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.010620510205626488,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.8499178886413574,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.01100193802267313,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.802701473236084,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.011393132619559765,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 3.6669745445251465,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.009844624437391758,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.820718288421631,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.010924831964075565,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 3.7869009971618652,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.010494636371731758,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.790957450866699,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.010310249403119087,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.8752992153167725,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.010647440329194069,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 3.8087809085845947,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.012783640995621681,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 3.764528512954712,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.643893241882324,
+ "eval_runtime": 84.3251,
+ "eval_samples_per_second": 28.959,
+ "eval_steps_per_second": 1.814,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.012959420680999756,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 3.8086109161376953,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.013563459739089012,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 3.6965975761413574,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.011980905197560787,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 3.711778163909912,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.011871901340782642,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 3.6733522415161133,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.012937705032527447,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 3.7733635902404785,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.011714889667928219,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 3.728959798812866,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.013666588813066483,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 3.6072607040405273,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.013764542527496815,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 3.5575504302978516,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.012109178118407726,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 3.5769667625427246,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.013473691418766975,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 3.680962324142456,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.01379619911313057,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 3.757096529006958,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.011314289644360542,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 3.76945161819458,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.013036033138632774,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 3.7243385314941406,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.014120346866548061,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 3.632735013961792,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.011118597351014614,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 3.738640308380127,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.013166938908398151,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 3.748673677444458,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.014428527094423771,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 3.6997504234313965,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.011080035008490086,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 3.6520442962646484,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.014199669472873211,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 3.713841438293457,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.013674831949174404,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 3.7265865802764893,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.011398992501199245,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 3.7864127159118652,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.013014162890613079,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 3.808335781097412,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.013607821427285671,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 3.7590603828430176,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.011284386739134789,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 3.852957248687744,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.0124812675639987,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 3.690640926361084,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.012215296737849712,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 3.7401716709136963,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.011153114959597588,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 3.6022608280181885,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.011128322221338749,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 3.76261043548584,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.011405743658542633,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 3.7317919731140137,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.010796097107231617,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 3.7927498817443848,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.011359430849552155,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 3.7940726280212402,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.010661331936717033,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 3.696272373199463,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.010808812454342842,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 3.935020923614502,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.011492723599076271,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 3.793449640274048,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.010726522654294968,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 3.823009967803955,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.012037855572998524,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 3.6274938583374023,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.010546860285103321,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 3.7414891719818115,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.011701563373208046,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 3.697719097137451,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.01202841941267252,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 3.726900577545166,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.010880138725042343,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 3.7554526329040527,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.011453451588749886,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 3.754596471786499,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.01151049230247736,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 3.771867036819458,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.010971508920192719,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 3.7297768592834473,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.011703700758516788,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 3.7855639457702637,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.010938476771116257,
+ "learning_rate": 0.000125422220031917,
+ "loss": 3.7032675743103027,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.011303786188364029,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 3.7274818420410156,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.011036397889256477,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 3.7945384979248047,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.010740772821009159,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 3.7876367568969727,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.01077644806355238,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 3.8004746437072754,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.010681649670004845,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 3.7691421508789062,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.01066069956868887,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 3.771846294403076,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.010379420593380928,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 3.8060200214385986,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.010975166223943233,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 3.79958176612854,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.010764715261757374,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 3.717043161392212,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.01078881323337555,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 3.801644802093506,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.010265138000249863,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 3.783195972442627,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.010792591609060764,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 3.8415896892547607,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.010571829974651337,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 3.836528778076172,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.010886797681450844,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 3.700542449951172,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.010580138303339481,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 3.771808624267578,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.011085486970841885,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 3.748702049255371,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.010542228817939758,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 3.720003128051758,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.01025788951665163,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 3.8107736110687256,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.010472859255969524,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 3.761867046356201,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.01006028801202774,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 3.9037365913391113,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.010959411971271038,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 3.6597089767456055,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.010549000464379787,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 3.6739065647125244,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.010526958853006363,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 3.715498924255371,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.010918751358985901,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.7726211547851562,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.010232404805719852,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.816497325897217,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.010697577148675919,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 3.713224411010742,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.012965346686542034,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 3.6997082233428955,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.655182838439941,
+ "eval_runtime": 85.2245,
+ "eval_samples_per_second": 28.654,
+ "eval_steps_per_second": 1.795,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.01170173566788435,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 3.676013946533203,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.012074579484760761,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 3.671389102935791,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.010872588492929935,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 3.7682933807373047,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.012460839934647083,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 3.6640148162841797,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.011374551802873611,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 3.5511608123779297,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.012543464079499245,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 3.707737445831299,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.012159660458564758,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 3.8008790016174316,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.011233200319111347,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 3.69169545173645,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.011677992530167103,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 3.63594388961792,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.011566423811018467,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 3.681525468826294,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.01078653521835804,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 3.739337205886841,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.01217108778655529,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 3.6421661376953125,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.010930873453617096,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 3.748523235321045,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.011151740327477455,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 3.753802537918091,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.012875067070126534,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 3.6623620986938477,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.011753715574741364,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 3.727081775665283,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.011851518414914608,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 3.6371452808380127,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.011906645260751247,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 3.8166069984436035,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.011639812029898167,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 3.6870737075805664,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.011572390794754028,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 3.7846291065216064,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.011138715781271458,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 3.780052661895752,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.012126869522035122,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 3.6294097900390625,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.01124672219157219,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 3.601348876953125,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.011345062404870987,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 3.802715539932251,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.01185676921159029,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 3.7901811599731445,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.010895371437072754,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 3.7976598739624023,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.012236456386744976,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 3.638669490814209,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.01074462104588747,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 3.8074564933776855,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.011451425030827522,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 3.8096084594726562,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.010895966552197933,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 3.770529270172119,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.011214354075491428,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 3.669459819793701,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.011040736921131611,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 3.6421093940734863,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.011235068552196026,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 3.717794895172119,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.010692991316318512,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 3.837008476257324,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.010941149666905403,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 3.8316516876220703,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.010738505981862545,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 3.7896690368652344,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.011439068242907524,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 3.7064857482910156,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.010909919627010822,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 3.6063177585601807,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.010811230167746544,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 3.7572851181030273,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.011699718423187733,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 3.7057502269744873,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.010557346977293491,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 3.7413482666015625,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.012217458337545395,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 3.68583345413208,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.011844443157315254,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 3.672800064086914,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.010863780975341797,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 3.8191466331481934,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.011684334836900234,
+ "learning_rate": 0.000110418175419276,
+ "loss": 3.816007375717163,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.010890254750847816,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 3.669980525970459,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.010885228402912617,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 3.7669625282287598,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.010626623407006264,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 3.8925986289978027,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.0104477284476161,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 3.702505350112915,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.010862227529287338,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 3.7865467071533203,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.010828044265508652,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 3.7201313972473145,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.011225244030356407,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 3.6084065437316895,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.010682853870093822,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 3.8278732299804688,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.011466807685792446,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 3.7215189933776855,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.010362178087234497,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 3.904291868209839,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.010957669466733932,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 3.778188705444336,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.010585121810436249,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 3.6741180419921875,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.011203119531273842,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 3.6816086769104004,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.010951190255582333,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 3.7051103115081787,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.011283005587756634,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 3.7492308616638184,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.010675647296011448,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 3.757633686065674,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.011540205217897892,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 3.7467308044433594,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.010912961326539516,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 3.7003517150878906,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.0114189013838768,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 3.7336697578430176,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.011332034133374691,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 3.718954563140869,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.010548744350671768,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 3.759291172027588,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.011118164286017418,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 3.70505428314209,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.010609764605760574,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 3.84796142578125,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.011173306033015251,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 3.6996655464172363,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.010832463391125202,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 3.725262403488159,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.010700349695980549,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 3.718334436416626,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.01289756502956152,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 3.704533100128174,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.693915367126465,
+ "eval_runtime": 85.31,
+ "eval_samples_per_second": 28.625,
+ "eval_steps_per_second": 1.793,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.011198977939784527,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 3.6982197761535645,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.012199430726468563,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 3.7857213020324707,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.012049948796629906,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 3.6798291206359863,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.011377546936273575,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 3.640404462814331,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.012638721615076065,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 3.749448299407959,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.01160160731524229,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 3.7944140434265137,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.011627585627138615,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 3.648456335067749,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.011439858004450798,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 3.720679759979248,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.011306632310152054,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 3.708101272583008,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.01244926918298006,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 3.6416754722595215,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.011299839243292809,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 3.6820151805877686,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.011271092109382153,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 3.632664680480957,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.011228576302528381,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 3.6773757934570312,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.011157537810504436,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 3.688231945037842,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.011199907399713993,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 3.7428293228149414,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.010619419626891613,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 3.7390031814575195,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.011098803021013737,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 3.6182665824890137,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.01111474446952343,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 3.699374198913574,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.011336212046444416,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 3.676906108856201,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.011283556930720806,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 3.6507439613342285,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.010850561782717705,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 3.8105974197387695,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.011408800259232521,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 3.760531425476074,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.010755250230431557,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 3.7775449752807617,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.010943734087049961,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 3.733713150024414,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.011332372203469276,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 3.6487903594970703,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.011002120561897755,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 3.741724967956543,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.010813242755830288,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 3.7981441020965576,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.011091019958257675,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 3.7716856002807617,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.010958508588373661,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 3.5713768005371094,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.010796858929097652,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 3.8373794555664062,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.010614383034408092,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 3.8736562728881836,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.011410286650061607,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 3.6740145683288574,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.011398029513657093,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 3.581528663635254,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.01076753530651331,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 3.770960807800293,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.011508522555232048,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 3.609501600265503,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.01123715564608574,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 3.73911714553833,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.01137506403028965,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 3.7328197956085205,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.011042161844670773,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 3.74168062210083,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.010899839922785759,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 3.768195152282715,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.010904601775109768,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 3.7806577682495117,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.01097328495234251,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 3.7549877166748047,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.011439703404903412,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 3.72983455657959,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.010535117238759995,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 3.7976064682006836,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.011130924336612225,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 3.7822225093841553,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.01120290532708168,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 3.5806386470794678,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.010762058198451996,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 3.6654231548309326,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.01086795050650835,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 3.6761934757232666,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.010754890739917755,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 3.711052894592285,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.010603540576994419,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 3.735914945602417,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.01082628034055233,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 3.7499945163726807,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.010752163827419281,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 3.7164082527160645,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.01059526763856411,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 3.790992021560669,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.011081925593316555,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 3.6938629150390625,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.010565798729658127,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 3.7721762657165527,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.011132346466183662,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 3.6816294193267822,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.010373701341450214,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 3.6214842796325684,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.011445647105574608,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 3.696721076965332,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.01062934473156929,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 3.794649124145508,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.010760935954749584,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 3.847841262817383,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.010981135070323944,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 3.806766986846924,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.010613447986543179,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 3.8057641983032227,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.01062733493745327,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 3.812392473220825,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.01053095143288374,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 3.8165760040283203,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.010590441524982452,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 3.750246286392212,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.010535027831792831,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 3.6753740310668945,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.01089025940746069,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 3.646995782852173,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.010809162631630898,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 3.600886821746826,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.0106975007802248,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 3.7091875076293945,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.011214018799364567,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 3.703693389892578,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.010956529527902603,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 3.755434513092041,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.010600938461720943,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 3.653496503829956,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.013423817232251167,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 3.720472812652588,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.70236349105835,
+ "eval_runtime": 84.2528,
+ "eval_samples_per_second": 28.984,
+ "eval_steps_per_second": 1.816,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.011171610094606876,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 3.7004337310791016,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.012332933023571968,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 3.7265610694885254,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.011277936398983002,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 3.601111888885498,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.013066980056464672,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 3.656167507171631,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.011609097942709923,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 3.6531968116760254,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.011375260539352894,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 3.8449621200561523,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.01188904233276844,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 3.639618396759033,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.011385303921997547,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 3.607211112976074,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.012061718851327896,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 3.759932518005371,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.011797578074038029,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 3.651660919189453,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.010990801267325878,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 3.754148006439209,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.011108523234724998,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 3.737645149230957,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.01116233505308628,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 3.6953439712524414,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.01158575527369976,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 3.7638463973999023,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.010980706661939621,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 3.669271469116211,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.011257216334342957,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 3.5535852909088135,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.0113073093816638,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 3.6486611366271973,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.010872259736061096,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 3.724148750305176,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.011464682407677174,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 3.6188430786132812,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.011032741516828537,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 3.7590906620025635,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.011746014468371868,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 3.654430866241455,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.01034239400178194,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 3.743414878845215,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.010861272923648357,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 3.690239906311035,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.010557636618614197,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 3.673034191131592,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.011031560599803925,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 3.6802845001220703,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.011244124732911587,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 3.739335536956787,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.011239913292229176,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 3.581887722015381,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.011029187589883804,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 3.617955207824707,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.011090870946645737,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 3.7086760997772217,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.010879257693886757,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 3.6402206420898438,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.011360609903931618,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 3.5563437938690186,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.010615409351885319,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 3.635526657104492,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.010841797105967999,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 3.696800708770752,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.010706157423555851,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 3.643747091293335,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.010727638378739357,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 3.713442087173462,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.011199980974197388,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 3.6075096130371094,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.010633513331413269,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 3.586681365966797,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.011111010797321796,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 3.5740785598754883,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.010320307686924934,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 3.73391056060791,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.011368511244654655,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 3.765704393386841,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.010887169279158115,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 3.700038433074951,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.011458968743681908,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 3.5883827209472656,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.010733275674283504,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 3.6688318252563477,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.010741052217781544,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 3.8183670043945312,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.010705577209591866,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 3.8047947883605957,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.010786568745970726,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 3.5870020389556885,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.01068600732833147,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 3.7506484985351562,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.01106525119394064,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 3.6020455360412598,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.010966303758323193,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 3.6486215591430664,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.010402275249361992,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 3.6864218711853027,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.010643420740962029,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 3.751906633377075,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.010683218948543072,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 3.6216816902160645,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.01069771870970726,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 3.7787914276123047,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.010822269134223461,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 3.690450668334961,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.010331728495657444,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 3.7027666568756104,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.010398197919130325,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 3.892603874206543,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.010359621606767178,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 3.705939769744873,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.01045959535986185,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 3.7312638759613037,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.010584887117147446,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 3.670193672180176,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.010751177556812763,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 3.611891746520996,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.010396091267466545,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 3.7198853492736816,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.010508151724934578,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 3.735065460205078,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.010515174828469753,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 3.8035366535186768,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.010779086500406265,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 3.6760854721069336,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.010542825795710087,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 3.6713409423828125,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.01065896824002266,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 3.873026132583618,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.010974416509270668,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 3.7147278785705566,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.011038513854146004,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 3.7224650382995605,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.010644898749887943,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 3.702504873275757,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.010861898772418499,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 3.7112412452697754,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.010449038818478584,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 3.7420992851257324,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.01367289386689663,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 3.643402576446533,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.72266960144043,
+ "eval_runtime": 84.9593,
+ "eval_samples_per_second": 28.743,
+ "eval_steps_per_second": 1.801,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.010939717292785645,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 3.748684883117676,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.011713317595422268,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 3.6275434494018555,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.01116150338202715,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 3.5442216396331787,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.01154260989278555,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 3.6425576210021973,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.011184405535459518,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 3.5456011295318604,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.011234240606427193,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 3.7824273109436035,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.011259308084845543,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 3.6412172317504883,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.011159202083945274,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 3.5693745613098145,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.011330717243254185,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 3.682805061340332,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.010699311271309853,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 3.680925130844116,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.01110282726585865,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 3.8039631843566895,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.010918982326984406,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 3.6593871116638184,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.010844809003174305,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 3.7600345611572266,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.011000516824424267,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 3.6694464683532715,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.011035950854420662,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 3.5916249752044678,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.010822792537510395,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 3.634279727935791,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.011248702183365822,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 3.6544113159179688,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.010976427234709263,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 3.6925296783447266,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.011404191143810749,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 3.6901931762695312,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.011057614348828793,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 3.589061737060547,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.011979247443377972,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 3.545525312423706,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.01113880518823862,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 3.722064971923828,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.010881622321903706,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 3.6964316368103027,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.011353516951203346,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 3.591859817504883,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.010664490982890129,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 3.690751552581787,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.011506730690598488,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 3.5863499641418457,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.010956885293126106,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 3.67307710647583,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.010817206464707851,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 3.6958117485046387,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.010806583799421787,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 3.5831050872802734,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.011475218459963799,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 3.809819221496582,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.010781338438391685,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 3.6346025466918945,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.010865557007491589,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 3.685185670852661,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.01063030306249857,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 3.698793888092041,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.010609522461891174,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 3.678513765335083,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.010794652625918388,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 3.6209487915039062,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.010213074274361134,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 3.6966776847839355,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.010727807879447937,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 3.7263050079345703,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.010472957044839859,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 3.6380600929260254,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.010353927500545979,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 3.7395386695861816,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.010614934377372265,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 3.714156150817871,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.010265447199344635,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 3.77215576171875,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.010563590563833714,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 3.6018381118774414,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.01068996824324131,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 3.692389726638794,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.01082534994930029,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 3.6294357776641846,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.010683944448828697,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 3.6320314407348633,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.010798857547342777,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 3.5980758666992188,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.010519741103053093,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 3.6558797359466553,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.01038867887109518,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 3.7643513679504395,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.01050296239554882,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 3.67952823638916,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.010359375737607479,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 3.753803014755249,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.010457335971295834,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 3.778233289718628,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.01047473307698965,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 3.605391263961792,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.01057284977287054,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 3.7074832916259766,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.010335509665310383,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 3.669400215148926,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.010604656301438808,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 3.6579153537750244,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.010402156971395016,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 3.6991233825683594,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.010328474454581738,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 3.7142724990844727,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.010589631274342537,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 3.6590285301208496,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.010586787015199661,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 3.715052843093872,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.01054228376597166,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 3.567382335662842,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.010599953122437,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 3.6226325035095215,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.010479569435119629,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 3.746243476867676,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.010413583368062973,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 3.639831781387329,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.010693448595702648,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 3.6095170974731445,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.010380701161921024,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 3.6874170303344727,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.010398137383162975,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 3.6677775382995605,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.010463608428835869,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 3.7340478897094727,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.01051968615502119,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 3.5982718467712402,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.010627644136548042,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 3.6890177726745605,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.010458312928676605,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 3.639946937561035,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.010449914261698723,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 3.6510815620422363,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.013585928827524185,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 3.541651487350464,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.7142744064331055,
+ "eval_runtime": 86.1003,
+ "eval_samples_per_second": 28.362,
+ "eval_steps_per_second": 1.777,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.01052639540284872,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 3.628779649734497,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.010964912362396717,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 3.694171905517578,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.010593419894576073,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 3.624443531036377,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.01095045730471611,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 3.6524055004119873,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.010763823054730892,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 3.656599760055542,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.010534845292568207,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 3.726625442504883,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.011051180772483349,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 3.5846238136291504,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.01103670708835125,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 3.616269826889038,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.010425313375890255,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 3.528974771499634,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.010939684696495533,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 3.7705178260803223,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.010312160477042198,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 3.737966775894165,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.010704337619245052,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 3.706246852874756,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.010644222609698772,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 3.6459007263183594,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.010891553945839405,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 3.6289610862731934,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.011134986765682697,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 3.590668201446533,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.010584825649857521,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 3.615771770477295,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.010991886258125305,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 3.721714973449707,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.011402108706533909,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 3.538965940475464,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.010697935707867146,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 3.648359537124634,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.010517035610973835,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 3.749526023864746,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.010620534420013428,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 3.731874465942383,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.010737698525190353,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 3.625178337097168,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.010687222704291344,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 3.624415874481201,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.010712170042097569,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 3.6931064128875732,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.01060887798666954,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 3.670821189880371,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.010376610793173313,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 3.8469483852386475,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.01051329355686903,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 3.6551308631896973,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.010989594273269176,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 3.5393049716949463,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.01038767583668232,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 3.705885171890259,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.010684794746339321,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 3.697051525115967,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.010663939639925957,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 3.6838490962982178,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.010809536091983318,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 3.5942301750183105,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.01084168627858162,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 3.6479849815368652,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.010728816501796246,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 3.7277913093566895,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.01032975409179926,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 3.6657490730285645,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.010722869075834751,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 3.751311779022217,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.010471544228494167,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 3.680821180343628,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.010775016620755196,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 3.5578250885009766,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.010975691489875317,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 3.5339064598083496,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.010622451081871986,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 3.6166341304779053,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.010890105739235878,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 3.569092035293579,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.010871225036680698,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 3.698408603668213,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.010501074604690075,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 3.5865330696105957,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.011065141297876835,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 3.672624349594116,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.010487294755876064,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 3.5983645915985107,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.010933814570307732,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 3.7004053592681885,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.011023259721696377,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 3.5738251209259033,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.010547676123678684,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 3.7099862098693848,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.010578920133411884,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 3.7546958923339844,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.010626672767102718,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 3.6026458740234375,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.010627084411680698,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 3.633793592453003,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.010266517288982868,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 3.666689157485962,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.0107617462053895,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 3.5540871620178223,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.01041004341095686,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 3.678253650665283,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.01026161853224039,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 3.701547861099243,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.010734396986663342,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 3.5305237770080566,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.010478617623448372,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 3.6644625663757324,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.01041773334145546,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 3.7398324012756348,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.010665396228432655,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 3.69044828414917,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.010550654493272305,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 3.637752056121826,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.01097883377224207,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 3.679640769958496,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.010624000802636147,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 3.757322311401367,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.01074673980474472,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 3.6506032943725586,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.01069655455648899,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 3.723083019256592,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.01091351080685854,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 3.6034116744995117,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.010381899774074554,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 3.696979522705078,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.010780731216073036,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 3.62003755569458,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.0106213903054595,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 3.759542942047119,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.010816322639584541,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 3.7188475131988525,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.010865229181945324,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 3.7408390045166016,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.010682439431548119,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 3.7417144775390625,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.013518013060092926,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 3.699465274810791,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.7125468254089355,
+ "eval_runtime": 85.6381,
+ "eval_samples_per_second": 28.515,
+ "eval_steps_per_second": 1.787,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.010887881740927696,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 3.6041579246520996,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.010766466148197651,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 3.6605751514434814,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.011448126286268234,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 3.6999757289886475,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.011493033729493618,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 3.582723617553711,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.01084202341735363,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 3.6581192016601562,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.010557609610259533,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 3.653883457183838,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.011247646994888783,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 3.6497740745544434,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.010664111003279686,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 3.553312063217163,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.010975253768265247,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 3.6196258068084717,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.010572442784905434,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 3.6203126907348633,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.010983611457049847,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 3.5807945728302,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.010395437479019165,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 3.71705961227417,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.01056945975869894,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 3.478778839111328,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.010592995211482048,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 3.644442558288574,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.010395487770438194,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 3.7756967544555664,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.010650730691850185,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 3.6974682807922363,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.010764485225081444,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 3.5944886207580566,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.010510710068047047,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 3.570615768432617,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.010854898020625114,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 3.66498064994812,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.010549460537731647,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 3.760610580444336,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.01069426629692316,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 3.581028938293457,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.010241464711725712,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 3.652651786804199,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.01042160578072071,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 3.6644420623779297,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.010355078615248203,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 3.7401928901672363,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.0103232990950346,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 3.67875599861145,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.010247972793877125,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 3.663907051086426,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.010393938049674034,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 3.6922354698181152,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.010332783684134483,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 3.695392370223999,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.010314750485122204,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 3.680938720703125,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.010585930198431015,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 3.5173425674438477,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.010234625078737736,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 3.7759923934936523,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.010067804716527462,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 3.7258429527282715,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.01042136736214161,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 3.6556038856506348,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.010507774539291859,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 3.635871410369873,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.010355065576732159,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 3.633258819580078,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.010563935153186321,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 3.5761260986328125,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.01006772369146347,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 3.602151870727539,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.010395150631666183,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 3.62664794921875,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.010469610802829266,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 3.6665854454040527,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.010135308839380741,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 3.694465160369873,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.01021372340619564,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 3.706385612487793,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.01047767698764801,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 3.627901554107666,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.010106295347213745,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 3.677581310272217,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.010386410169303417,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 3.650301933288574,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.010301743634045124,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 3.7333407402038574,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.01013338565826416,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 3.733818769454956,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.01047387532889843,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 3.601315498352051,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.010207134298980236,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 3.7421507835388184,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.010462267324328423,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 3.5990211963653564,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.010498263873159885,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 3.6144235134124756,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.010573030449450016,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 3.6187644004821777,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.010144715197384357,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 3.7219886779785156,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.010262173600494862,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 3.7200653553009033,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.010318619199097157,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 3.621098279953003,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.01040918193757534,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 3.6570935249328613,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.01004865113645792,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 3.62070631980896,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.010537326335906982,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 3.660491704940796,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.010265836492180824,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 3.617920398712158,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.010330178774893284,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 3.65623140335083,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.01067344006150961,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 3.5146265029907227,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.010205901227891445,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 3.6632275581359863,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.010501977056264877,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 3.535737991333008,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.01021649781614542,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 3.716676712036133,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.01034870371222496,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 3.676140069961548,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.01020711101591587,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 3.577268600463867,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.010482641868293285,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 3.697073459625244,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.010310336016118526,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 3.707488536834717,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.010384567081928253,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 3.6219279766082764,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.010294893756508827,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 3.6894752979278564,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.010161720216274261,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 3.707796573638916,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.010273336432874203,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 3.644685745239258,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.01322508417069912,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 3.5941271781921387,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.727503776550293,
+ "eval_runtime": 85.2461,
+ "eval_samples_per_second": 28.646,
+ "eval_steps_per_second": 1.795,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.010450659319758415,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 3.69075345993042,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.010451182723045349,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 3.795605182647705,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.01077298168092966,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 3.6475234031677246,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.010724779218435287,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 3.467151165008545,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.010418664664030075,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 3.619513511657715,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.010397085919976234,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 3.7081429958343506,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.010976964607834816,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 3.5362629890441895,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.010142570361495018,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 3.882387638092041,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.011219651438295841,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 3.625960350036621,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.010485482402145863,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 3.6505603790283203,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.010280954651534557,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 3.699924945831299,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.010680160485208035,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 3.6987147331237793,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.01008457038551569,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 3.7250161170959473,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.010840549133718014,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 3.676187753677368,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.01026200968772173,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 3.730973958969116,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.010260597802698612,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 3.5819954872131348,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.0107171181589365,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 3.622724771499634,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.010594614781439304,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 3.6249685287475586,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.010256743058562279,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 3.6165173053741455,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.010805285535752773,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 3.5523672103881836,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.01092301681637764,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 3.406881809234619,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.010477510280907154,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 3.6325292587280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.010572307743132114,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 3.5459094047546387,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.010510562919080257,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 3.6716790199279785,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.010186564177274704,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 3.842869758605957,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.010589318349957466,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 3.599871873855591,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.010385156609117985,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 3.7396950721740723,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.010047109797596931,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 3.7100629806518555,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.010317830368876457,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 3.616238594055176,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.01062291581183672,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 3.5577707290649414,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.010189960710704327,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 3.596801280975342,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.009818674065172672,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 3.8307883739471436,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.010686943307518959,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 3.5708508491516113,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.010356864891946316,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 3.583446979522705,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.010150663554668427,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 3.6716527938842773,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.010174889117479324,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 3.560347557067871,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.010371376760303974,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 3.6427178382873535,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.009991277940571308,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 3.6818103790283203,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.010096525773406029,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 3.6590263843536377,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.010256882756948471,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 3.6281073093414307,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.010260817594826221,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 3.6478071212768555,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.01008711475878954,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 3.6427230834960938,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.010351716540753841,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 3.604745388031006,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.010051876306533813,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 3.657132387161255,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.009867713786661625,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 3.8197360038757324,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.010292892344295979,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 3.6619458198547363,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.009846757166087627,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 3.7708778381347656,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.010162790305912495,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 3.604006290435791,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.01021569687873125,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 3.556640148162842,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.00997830554842949,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 3.6774988174438477,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.009990915656089783,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 3.748716354370117,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.009989185258746147,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 3.6826841831207275,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.010109814815223217,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 3.6835732460021973,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.010180813260376453,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 3.6313610076904297,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.009938279166817665,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 3.869779586791992,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.01012891810387373,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 3.62372088432312,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.010117762722074986,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 3.8129868507385254,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.0101615684106946,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 3.6137633323669434,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.010746470652520657,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 3.630505323410034,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.010123452171683311,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 3.65401291847229,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.010247427970170975,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 3.5297603607177734,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.010388423688709736,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 3.6238255500793457,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.010181869380176067,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 3.654742956161499,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.010431759990751743,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 3.614164352416992,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.01023387722671032,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 3.5699102878570557,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.009967552497982979,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 3.700979709625244,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.010138928890228271,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 3.741842746734619,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.010247628204524517,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 3.568204402923584,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.009880070574581623,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 3.7166037559509277,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.010117005556821823,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 3.697563409805298,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.010152291506528854,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 3.598210573196411,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.013300119899213314,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 3.611368417739868,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.753724098205566,
+ "eval_runtime": 84.2847,
+ "eval_samples_per_second": 28.973,
+ "eval_steps_per_second": 1.815,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.010299697518348694,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 3.7087225914001465,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.010044008493423462,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 3.6918580532073975,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.01034870371222496,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 3.675506591796875,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.010332876816391945,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 3.6209158897399902,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.010003120638430119,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 3.52970027923584,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.010242326185107231,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 3.4770617485046387,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.009838285855948925,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 3.705012798309326,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.010244633071124554,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 3.5280323028564453,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.01023088302463293,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 3.538292407989502,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.010130329988896847,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 3.6165552139282227,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.009863656014204025,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 3.767970085144043,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.010312794707715511,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 3.614030122756958,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.010277412831783295,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 3.626993179321289,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.00999719463288784,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 3.7456741333007812,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.01029484998434782,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 3.6644556522369385,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.009860316291451454,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 3.8357770442962646,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.010103589855134487,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 3.6749749183654785,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.009857814759016037,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 3.7077512741088867,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.009869539178907871,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 3.774649143218994,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.009879796765744686,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 3.6891822814941406,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.009913664311170578,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 3.6512491703033447,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.009835373610258102,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 3.578923225402832,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.010177831165492535,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 3.4492783546447754,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.009978708811104298,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 3.617199420928955,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.009757592342793941,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 3.813636302947998,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.010047994554042816,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 3.6464805603027344,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.009992490522563457,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 3.6081228256225586,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.009895354509353638,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 3.630256175994873,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.009635576978325844,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 3.7958762645721436,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.010051862336695194,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 3.604858160018921,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.010219655930995941,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 3.546370029449463,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.009885251522064209,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 3.7979798316955566,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.010092189535498619,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 3.5678584575653076,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.009964804165065289,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 3.6732869148254395,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.010062708519399166,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 3.5310144424438477,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.010174709372222424,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 3.6279544830322266,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.00990620069205761,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 3.698559045791626,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.010147587396204472,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 3.606132984161377,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.009944230318069458,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 3.7514166831970215,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.010071675293147564,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 3.635221004486084,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.010020526126027107,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 3.7188243865966797,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.00977291725575924,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 3.7070627212524414,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.010155490599572659,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 3.6828484535217285,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.010125445201992989,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 3.5894861221313477,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.010209117084741592,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 3.513420581817627,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.010160212405025959,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 3.6079177856445312,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.009973670355975628,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 3.660189151763916,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.009911510162055492,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 3.698422431945801,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.010093717835843563,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 3.7000575065612793,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.010089986957609653,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 3.6587486267089844,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.01008665096014738,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 3.5204949378967285,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.009868312627077103,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 3.7092156410217285,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.01024295948445797,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 3.6775684356689453,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.010427089408040047,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 3.535743474960327,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.010192863643169403,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 3.5641260147094727,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.010153011418879032,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 3.701293468475342,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.010095211677253246,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 3.7041923999786377,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.010300367139279842,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 3.61315655708313,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.010264323092997074,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 3.6816904544830322,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.010065956972539425,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 3.583775758743286,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.010042326524853706,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 3.668391227722168,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.010368235409259796,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 3.6565170288085938,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.010307176038622856,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 3.6138839721679688,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.010180974379181862,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 3.658078670501709,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.010204372927546501,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 3.6040351390838623,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.010068336501717567,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 3.5643930435180664,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.009892802685499191,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 3.6251132488250732,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.010073086246848106,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 3.6666736602783203,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.010118677280843258,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 3.6956734657287598,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.010205233469605446,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 3.578723430633545,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.00998369324952364,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 3.6732354164123535,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.013396026566624641,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 3.6343507766723633,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.772793292999268,
+ "eval_runtime": 86.0388,
+ "eval_samples_per_second": 28.383,
+ "eval_steps_per_second": 1.778,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.010415416210889816,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 3.5387420654296875,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.010190770030021667,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 3.5928807258605957,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.010536297224462032,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 3.6700243949890137,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.010222907178103924,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 3.6895689964294434,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.010218674317002296,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 3.533839225769043,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.010047132149338722,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 3.6750645637512207,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.0104233268648386,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 3.5243964195251465,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.010383695363998413,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 3.565342903137207,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.010048693045973778,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 3.70458984375,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.010256735607981682,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 3.722970485687256,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.010099781677126884,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 3.6393308639526367,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.010103316977620125,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 3.4968714714050293,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.010001487098634243,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 3.6226253509521484,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.009999564848840237,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 3.576249599456787,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.010029874742031097,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 3.6122891902923584,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.010214915499091148,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 3.4698216915130615,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.009711493737995625,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 3.6627278327941895,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.010100006125867367,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 3.6436243057250977,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.009900916367769241,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 3.6055731773376465,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.009813538752496243,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 3.651754856109619,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.010175704956054688,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 3.473374366760254,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.009967555291950703,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 3.6174113750457764,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.010112479329109192,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 3.6198692321777344,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.010001592338085175,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 3.5990819931030273,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.00983844231814146,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 3.6337671279907227,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.010080224834382534,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 3.6805613040924072,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.010037674568593502,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 3.609055280685425,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.009871575981378555,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 3.565932273864746,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.010031160898506641,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 3.521005153656006,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.009946644306182861,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 3.6073803901672363,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.010002030059695244,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 3.5549066066741943,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.01005497109144926,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 3.5870392322540283,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.009837804362177849,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 3.646942615509033,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.009868433699011803,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 3.7009453773498535,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.010489356704056263,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 3.5060977935791016,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.009817800484597683,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 3.6464366912841797,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.010007795877754688,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 3.6670634746551514,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.010086318477988243,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 3.594205141067505,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.010066303424537182,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 3.6243114471435547,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.009636988863348961,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 3.7795352935791016,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.010062859393656254,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 3.5964536666870117,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.009714869782328606,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 3.7391300201416016,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.009830289520323277,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 3.5883266925811768,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.009627335704863071,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 3.6492302417755127,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.009866955690085888,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 3.596245765686035,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.010196004994213581,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 3.643705368041992,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.009784696623682976,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 3.6940207481384277,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.010061181150376797,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 3.6626949310302734,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.00989742111414671,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 3.5429298877716064,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.009915201924741268,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 3.6773242950439453,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.010082722641527653,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 3.581228256225586,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.00968837458640337,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 3.6868748664855957,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.009882677346467972,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 3.669961452484131,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.009886407293379307,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 3.733452081680298,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.009815924800932407,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 3.6317214965820312,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.009805339388549328,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 3.646848678588867,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.010099219158291817,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 3.499190330505371,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.010085233487188816,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 3.606651544570923,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.009855957701802254,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 3.6624374389648438,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.010144675150513649,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 3.550400733947754,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.01011188980191946,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 3.7907161712646484,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.009690810926258564,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 3.6564908027648926,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.009902643971145153,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 3.574329376220703,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.009960168972611427,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 3.7213761806488037,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.010033962316811085,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 3.6695356369018555,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.009981526993215084,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 3.5987329483032227,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.010042416863143444,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 3.5841965675354004,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.009764176793396473,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 3.6129932403564453,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.009926766157150269,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 3.55425763130188,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.009945674799382687,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 3.5070297718048096,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.00982875656336546,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 3.7323827743530273,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.013072168454527855,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 3.6015539169311523,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 4.771280288696289,
+ "eval_runtime": 84.6771,
+ "eval_samples_per_second": 28.839,
+ "eval_steps_per_second": 1.807,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.00988372415304184,
+ "learning_rate": 2.1371380147693752e-05,
+ "loss": 3.639014720916748,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.009776749648153782,
+ "learning_rate": 2.1286841417243662e-05,
+ "loss": 3.594923734664917,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.00981035828590393,
+ "learning_rate": 2.1202529657997137e-05,
+ "loss": 3.721621036529541,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.010143638588488102,
+ "learning_rate": 2.1118444937882538e-05,
+ "loss": 3.6703920364379883,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.010007319040596485,
+ "learning_rate": 2.1034587324645456e-05,
+ "loss": 3.6203114986419678,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.01014760136604309,
+ "learning_rate": 2.095095688584846e-05,
+ "loss": 3.505446672439575,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.00991113856434822,
+ "learning_rate": 2.086755368887107e-05,
+ "loss": 3.594916820526123,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.010044412687420845,
+ "learning_rate": 2.0784377800909802e-05,
+ "loss": 3.4361214637756348,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.00981911737471819,
+ "learning_rate": 2.0701429288977847e-05,
+ "loss": 3.680530548095703,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.009848475456237793,
+ "learning_rate": 2.0618708219905455e-05,
+ "loss": 3.6255898475646973,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.009824787266552448,
+ "learning_rate": 2.0536214660339398e-05,
+ "loss": 3.489718437194824,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.009992008097469807,
+ "learning_rate": 2.0453948676743267e-05,
+ "loss": 3.5512876510620117,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.009824282489717007,
+ "learning_rate": 2.037191033539731e-05,
+ "loss": 3.548912286758423,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.009750199504196644,
+ "learning_rate": 2.029009970239831e-05,
+ "loss": 3.7063984870910645,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.00988633930683136,
+ "learning_rate": 2.0208516843659678e-05,
+ "loss": 3.6012685298919678,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.009829195216298103,
+ "learning_rate": 2.012716182491114e-05,
+ "loss": 3.688621997833252,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.009865093044936657,
+ "learning_rate": 2.0046034711699048e-05,
+ "loss": 3.5588560104370117,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.009931850247085094,
+ "learning_rate": 1.9965135569386032e-05,
+ "loss": 3.6321544647216797,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.0100401034578681,
+ "learning_rate": 1.9884464463151077e-05,
+ "loss": 3.646028995513916,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.009820720180869102,
+ "learning_rate": 1.980402145798933e-05,
+ "loss": 3.6351561546325684,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.009863710030913353,
+ "learning_rate": 1.9723806618712484e-05,
+ "loss": 3.598113775253296,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.009868839755654335,
+ "learning_rate": 1.9643820009947983e-05,
+ "loss": 3.621903419494629,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.010045474395155907,
+ "learning_rate": 1.9564061696139687e-05,
+ "loss": 3.5981831550598145,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.009799710474908352,
+ "learning_rate": 1.948453174154744e-05,
+ "loss": 3.581029176712036,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.009883539751172066,
+ "learning_rate": 1.9405230210247042e-05,
+ "loss": 3.5930240154266357,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.00993758998811245,
+ "learning_rate": 1.9326157166130365e-05,
+ "loss": 3.6738619804382324,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.009821458719670773,
+ "learning_rate": 1.9247312672905017e-05,
+ "loss": 3.5852177143096924,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.00986559223383665,
+ "learning_rate": 1.9168696794094758e-05,
+ "loss": 3.5961360931396484,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.009728746488690376,
+ "learning_rate": 1.9090309593038812e-05,
+ "loss": 3.67063045501709,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.00979513768106699,
+ "learning_rate": 1.9012151132892425e-05,
+ "loss": 3.736830234527588,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.009808181785047054,
+ "learning_rate": 1.893422147662644e-05,
+ "loss": 3.583038806915283,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.009843084029853344,
+ "learning_rate": 1.8856520687027325e-05,
+ "loss": 3.5737438201904297,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.009951401501893997,
+ "learning_rate": 1.8779048826697318e-05,
+ "loss": 3.519443988800049,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.009615813381969929,
+ "learning_rate": 1.8701805958054e-05,
+ "loss": 3.7558703422546387,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.009861711412668228,
+ "learning_rate": 1.8624792143330544e-05,
+ "loss": 3.577138900756836,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.00983406137675047,
+ "learning_rate": 1.8548007444575656e-05,
+ "loss": 3.5917656421661377,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.009635214693844318,
+ "learning_rate": 1.8471451923653322e-05,
+ "loss": 3.777966022491455,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.00995742529630661,
+ "learning_rate": 1.8395125642242987e-05,
+ "loss": 3.4609484672546387,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.009957936592400074,
+ "learning_rate": 1.8319028661839343e-05,
+ "loss": 3.6744980812072754,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.009739101864397526,
+ "learning_rate": 1.8243161043752384e-05,
+ "loss": 3.6783242225646973,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.009664617478847504,
+ "learning_rate": 1.8167522849107228e-05,
+ "loss": 3.741067886352539,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.009835137985646725,
+ "learning_rate": 1.809211413884418e-05,
+ "loss": 3.6210567951202393,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.009597244672477245,
+ "learning_rate": 1.8016934973718762e-05,
+ "loss": 3.7198190689086914,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.009676315821707249,
+ "learning_rate": 1.7941985414301403e-05,
+ "loss": 3.6333537101745605,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.009889408014714718,
+ "learning_rate": 1.786726552097766e-05,
+ "loss": 3.564084053039551,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.009909589774906635,
+ "learning_rate": 1.7792775353947908e-05,
+ "loss": 3.537083864212036,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.009642067365348339,
+ "learning_rate": 1.7718514973227634e-05,
+ "loss": 3.595860004425049,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.009891235269606113,
+ "learning_rate": 1.7644484438647057e-05,
+ "loss": 3.5169239044189453,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.009647311642765999,
+ "learning_rate": 1.75706838098512e-05,
+ "loss": 3.714473247528076,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.00981714203953743,
+ "learning_rate": 1.749711314629992e-05,
+ "loss": 3.613312244415283,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.009803703986108303,
+ "learning_rate": 1.742377250726779e-05,
+ "loss": 3.6811203956604004,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.009684132412075996,
+ "learning_rate": 1.7350661951844065e-05,
+ "loss": 3.5379457473754883,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.009676257148385048,
+ "learning_rate": 1.727778153893248e-05,
+ "loss": 3.7030465602874756,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.00975799560546875,
+ "learning_rate": 1.720513132725162e-05,
+ "loss": 3.7279794216156006,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.009820551611483097,
+ "learning_rate": 1.713271137533433e-05,
+ "loss": 3.5784618854522705,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.009746492840349674,
+ "learning_rate": 1.7060521741528127e-05,
+ "loss": 3.6848793029785156,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.009746083058416843,
+ "learning_rate": 1.698856248399482e-05,
+ "loss": 3.661437749862671,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.009637058712542057,
+ "learning_rate": 1.6916833660710785e-05,
+ "loss": 3.6706879138946533,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.009517660364508629,
+ "learning_rate": 1.6845335329466606e-05,
+ "loss": 3.80928897857666,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.009771390818059444,
+ "learning_rate": 1.6774067547867113e-05,
+ "loss": 3.625204086303711,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.009878226555883884,
+ "learning_rate": 1.6703030373331585e-05,
+ "loss": 3.6538047790527344,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.009794016368687153,
+ "learning_rate": 1.6632223863093328e-05,
+ "loss": 3.597385883331299,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.009628507308661938,
+ "learning_rate": 1.656164807419988e-05,
+ "loss": 3.7011168003082275,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.009582540020346642,
+ "learning_rate": 1.6491303063512866e-05,
+ "loss": 3.6706957817077637,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.009624272584915161,
+ "learning_rate": 1.6421188887708013e-05,
+ "loss": 3.7050609588623047,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.009821905754506588,
+ "learning_rate": 1.6351305603275067e-05,
+ "loss": 3.6623659133911133,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.009646889753639698,
+ "learning_rate": 1.6281653266517658e-05,
+ "loss": 3.702028274536133,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.009818335063755512,
+ "learning_rate": 1.6212231933553485e-05,
+ "loss": 3.5551323890686035,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.00971989706158638,
+ "learning_rate": 1.6143041660313997e-05,
+ "loss": 3.7133727073669434,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.009707223623991013,
+ "learning_rate": 1.6074082502544668e-05,
+ "loss": 3.564924716949463,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.009425617754459381,
+ "learning_rate": 1.6005354515804503e-05,
+ "loss": 3.830141067504883,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.0132801104336977,
+ "learning_rate": 1.59368577554664e-05,
+ "loss": 3.4864468574523926,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 4.744765281677246,
+ "eval_runtime": 89.5704,
+ "eval_samples_per_second": 27.263,
+ "eval_steps_per_second": 1.708,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.009516589343547821,
+ "learning_rate": 1.5868592276717137e-05,
+ "loss": 3.649261236190796,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.0098579628393054,
+ "learning_rate": 1.5800558134556806e-05,
+ "loss": 3.5595834255218506,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.009853282012045383,
+ "learning_rate": 1.5732755383799315e-05,
+ "loss": 3.525458812713623,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.009715281426906586,
+ "learning_rate": 1.5665184079072162e-05,
+ "loss": 3.635540723800659,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.00982618983834982,
+ "learning_rate": 1.5597844274816352e-05,
+ "loss": 3.775991916656494,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.009796264581382275,
+ "learning_rate": 1.553073602528626e-05,
+ "loss": 3.609807252883911,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.009439758025109768,
+ "learning_rate": 1.546385938454982e-05,
+ "loss": 3.6934919357299805,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.009884373284876347,
+ "learning_rate": 1.5397214406488374e-05,
+ "loss": 3.570075511932373,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.009913901798427105,
+ "learning_rate": 1.533080114479657e-05,
+ "loss": 3.578876495361328,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.009576881304383278,
+ "learning_rate": 1.5264619652982352e-05,
+ "loss": 3.7850329875946045,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.009751259349286556,
+ "learning_rate": 1.5198669984366876e-05,
+ "loss": 3.7259654998779297,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.009723179042339325,
+ "learning_rate": 1.5132952192084793e-05,
+ "loss": 3.6233794689178467,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.009682616218924522,
+ "learning_rate": 1.5067466329083533e-05,
+ "loss": 3.6562883853912354,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.009772418066859245,
+ "learning_rate": 1.5002212448123997e-05,
+ "loss": 3.5838005542755127,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.009669722057878971,
+ "learning_rate": 1.4937190601780052e-05,
+ "loss": 3.5400314331054688,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.009997837245464325,
+ "learning_rate": 1.4872400842438576e-05,
+ "loss": 3.4855294227600098,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.00972607359290123,
+ "learning_rate": 1.4807843222299557e-05,
+ "loss": 3.6526832580566406,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.009687974117696285,
+ "learning_rate": 1.4743517793375814e-05,
+ "loss": 3.559513568878174,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.009747054427862167,
+ "learning_rate": 1.4679424607493315e-05,
+ "loss": 3.501235008239746,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.009667576290667057,
+ "learning_rate": 1.4615563716290698e-05,
+ "loss": 3.6701416969299316,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.009744727984070778,
+ "learning_rate": 1.455193517121951e-05,
+ "loss": 3.7111692428588867,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.009666373953223228,
+ "learning_rate": 1.448853902354421e-05,
+ "loss": 3.4947104454040527,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.009793323464691639,
+ "learning_rate": 1.4425375324341827e-05,
+ "loss": 3.5147135257720947,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.009639767929911613,
+ "learning_rate": 1.4362444124502309e-05,
+ "loss": 3.486765146255493,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.009689400903880596,
+ "learning_rate": 1.429974547472814e-05,
+ "loss": 3.5945122241973877,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.009628129191696644,
+ "learning_rate": 1.4237279425534442e-05,
+ "loss": 3.679323434829712,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.009653154760599136,
+ "learning_rate": 1.4175046027249065e-05,
+ "loss": 3.63624906539917,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.009648232720792294,
+ "learning_rate": 1.4113045330012324e-05,
+ "loss": 3.5671935081481934,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.00960077065974474,
+ "learning_rate": 1.4051277383776953e-05,
+ "loss": 3.631655216217041,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.009535086341202259,
+ "learning_rate": 1.398974223830839e-05,
+ "loss": 3.758965492248535,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.009762159548699856,
+ "learning_rate": 1.3928439943184394e-05,
+ "loss": 3.507059335708618,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.009672049432992935,
+ "learning_rate": 1.3867370547795065e-05,
+ "loss": 3.6468138694763184,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.009608916006982327,
+ "learning_rate": 1.3806534101342891e-05,
+ "loss": 3.6654391288757324,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.009449830278754234,
+ "learning_rate": 1.3745930652842728e-05,
+ "loss": 3.807436466217041,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.009712315164506435,
+ "learning_rate": 1.368556025112176e-05,
+ "loss": 3.608448028564453,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.009531614370644093,
+ "learning_rate": 1.362542294481918e-05,
+ "loss": 3.7083704471588135,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.009594115428626537,
+ "learning_rate": 1.356551878238656e-05,
+ "loss": 3.6367576122283936,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.00967665109783411,
+ "learning_rate": 1.3505847812087724e-05,
+ "loss": 3.506329298019409,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.009586893953382969,
+ "learning_rate": 1.3446410081998384e-05,
+ "loss": 3.5978097915649414,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.009810280986130238,
+ "learning_rate": 1.3387205640006494e-05,
+ "loss": 3.5048720836639404,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.009684186428785324,
+ "learning_rate": 1.332823453381196e-05,
+ "loss": 3.4621694087982178,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.009646110236644745,
+ "learning_rate": 1.3269496810926807e-05,
+ "loss": 3.584927558898926,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.00974421575665474,
+ "learning_rate": 1.3210992518674848e-05,
+ "loss": 3.6124062538146973,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.009723112918436527,
+ "learning_rate": 1.315272170419201e-05,
+ "loss": 3.5628304481506348,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.009502609260380268,
+ "learning_rate": 1.3094684414426073e-05,
+ "loss": 3.6442477703094482,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.009527389891445637,
+ "learning_rate": 1.3036880696136532e-05,
+ "loss": 3.704118251800537,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.009757990948855877,
+ "learning_rate": 1.2979310595894882e-05,
+ "loss": 3.562621831893921,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.009629922918975353,
+ "learning_rate": 1.2921974160084251e-05,
+ "loss": 3.6313962936401367,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.009713313542306423,
+ "learning_rate": 1.2864871434899672e-05,
+ "loss": 3.600409984588623,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.00958910770714283,
+ "learning_rate": 1.2808002466347654e-05,
+ "loss": 3.583289861679077,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.009595540352165699,
+ "learning_rate": 1.2751367300246535e-05,
+ "loss": 3.61555552482605,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.00954052247107029,
+ "learning_rate": 1.2694965982226301e-05,
+ "loss": 3.6211276054382324,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.009545544162392616,
+ "learning_rate": 1.2638798557728402e-05,
+ "loss": 3.669708251953125,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.009660632349550724,
+ "learning_rate": 1.2582865072006e-05,
+ "loss": 3.6469953060150146,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.009579981677234173,
+ "learning_rate": 1.2527165570123586e-05,
+ "loss": 3.5658745765686035,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.009676801972091198,
+ "learning_rate": 1.2471700096957376e-05,
+ "loss": 3.5956830978393555,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.009668037295341492,
+ "learning_rate": 1.2416468697194767e-05,
+ "loss": 3.583895683288574,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.009562625549733639,
+ "learning_rate": 1.2361471415334795e-05,
+ "loss": 3.561194896697998,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.009761827066540718,
+ "learning_rate": 1.2306708295687706e-05,
+ "loss": 3.60701060295105,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.009683944284915924,
+ "learning_rate": 1.2252179382375211e-05,
+ "loss": 3.55454421043396,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.009684965945780277,
+ "learning_rate": 1.2197884719330281e-05,
+ "loss": 3.5606021881103516,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.00945510808378458,
+ "learning_rate": 1.2143824350297104e-05,
+ "loss": 3.681427478790283,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.009634267538785934,
+ "learning_rate": 1.2089998318831137e-05,
+ "loss": 3.598752975463867,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.009451530873775482,
+ "learning_rate": 1.2036406668299062e-05,
+ "loss": 3.7172980308532715,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.0097283236682415,
+ "learning_rate": 1.198304944187868e-05,
+ "loss": 3.5344786643981934,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.009481810964643955,
+ "learning_rate": 1.1929926682558995e-05,
+ "loss": 3.6449403762817383,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.009591734036803246,
+ "learning_rate": 1.1877038433139998e-05,
+ "loss": 3.7889912128448486,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.009733876213431358,
+ "learning_rate": 1.1824384736232879e-05,
+ "loss": 3.660696506500244,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.009783471003174782,
+ "learning_rate": 1.1771965634259653e-05,
+ "loss": 3.6401121616363525,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.009758388623595238,
+ "learning_rate": 1.1719781169453536e-05,
+ "loss": 3.5066118240356445,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.009678416885435581,
+ "learning_rate": 1.1667831383858562e-05,
+ "loss": 3.5620346069335938,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.012775656767189503,
+ "learning_rate": 1.1616116319329808e-05,
+ "loss": 3.6689720153808594,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 4.7994585037231445,
+ "eval_runtime": 85.1281,
+ "eval_samples_per_second": 28.686,
+ "eval_steps_per_second": 1.797,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.00951242633163929,
+ "learning_rate": 1.1564636017533036e-05,
+ "loss": 3.6167516708374023,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.009770219214260578,
+ "learning_rate": 1.151339051994508e-05,
+ "loss": 3.4658095836639404,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.009556182660162449,
+ "learning_rate": 1.146237986785356e-05,
+ "loss": 3.553739070892334,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.009579217992722988,
+ "learning_rate": 1.141160410235674e-05,
+ "loss": 3.630580425262451,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.009611664339900017,
+ "learning_rate": 1.1361063264363776e-05,
+ "loss": 3.6224656105041504,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.009900358505547047,
+ "learning_rate": 1.1310757394594514e-05,
+ "loss": 3.5361223220825195,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.009638912975788116,
+ "learning_rate": 1.1260686533579481e-05,
+ "loss": 3.6677536964416504,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.009498419240117073,
+ "learning_rate": 1.121085072165986e-05,
+ "loss": 3.7196474075317383,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.009490969590842724,
+ "learning_rate": 1.1161249998987429e-05,
+ "loss": 3.6000003814697266,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.009589782916009426,
+ "learning_rate": 1.111188440552471e-05,
+ "loss": 3.6201071739196777,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.00968232937157154,
+ "learning_rate": 1.106275398104455e-05,
+ "loss": 3.5387158393859863,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.009585143998265266,
+ "learning_rate": 1.1013858765130468e-05,
+ "loss": 3.649829387664795,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.009660182520747185,
+ "learning_rate": 1.0965198797176513e-05,
+ "loss": 3.5890893936157227,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.00955335795879364,
+ "learning_rate": 1.0916774116387103e-05,
+ "loss": 3.5673489570617676,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.00959665048867464,
+ "learning_rate": 1.0868584761777125e-05,
+ "loss": 3.53995418548584,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.009619980119168758,
+ "learning_rate": 1.0820630772171869e-05,
+ "loss": 3.5859310626983643,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.009799620136618614,
+ "learning_rate": 1.0772912186206987e-05,
+ "loss": 3.5785937309265137,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.009506979025900364,
+ "learning_rate": 1.0725429042328542e-05,
+ "loss": 3.65474796295166,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.009541432373225689,
+ "learning_rate": 1.0678181378792794e-05,
+ "loss": 3.662707805633545,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.009557359851896763,
+ "learning_rate": 1.0631169233666306e-05,
+ "loss": 3.561842441558838,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.009372315369546413,
+ "learning_rate": 1.0584392644826016e-05,
+ "loss": 3.7292842864990234,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.009595783427357674,
+ "learning_rate": 1.053785164995886e-05,
+ "loss": 3.5169103145599365,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.009597061201930046,
+ "learning_rate": 1.0491546286562148e-05,
+ "loss": 3.645966053009033,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.00965114962309599,
+ "learning_rate": 1.0445476591943259e-05,
+ "loss": 3.57561993598938,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.009514620527625084,
+ "learning_rate": 1.0399642603219712e-05,
+ "loss": 3.6342849731445312,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.009394940920174122,
+ "learning_rate": 1.0354044357319129e-05,
+ "loss": 3.670510768890381,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.009734568186104298,
+ "learning_rate": 1.0308681890979173e-05,
+ "loss": 3.5813369750976562,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.009581188671290874,
+ "learning_rate": 1.026355524074758e-05,
+ "loss": 3.666073799133301,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.009574252180755138,
+ "learning_rate": 1.0218664442982084e-05,
+ "loss": 3.6280670166015625,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.009635343216359615,
+ "learning_rate": 1.0174009533850368e-05,
+ "loss": 3.5915777683258057,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.009618494659662247,
+ "learning_rate": 1.0129590549330119e-05,
+ "loss": 3.562727689743042,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.009404730051755905,
+ "learning_rate": 1.0085407525208865e-05,
+ "loss": 3.6899290084838867,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.009509819559752941,
+ "learning_rate": 1.0041460497084135e-05,
+ "loss": 3.684999465942383,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.009683100506663322,
+ "learning_rate": 9.997749500363172e-06,
+ "loss": 3.5146780014038086,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.009568952955305576,
+ "learning_rate": 9.954274570263191e-06,
+ "loss": 3.5810546875,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.009516660124063492,
+ "learning_rate": 9.911035741811153e-06,
+ "loss": 3.6946632862091064,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.009575535543262959,
+ "learning_rate": 9.868033049843787e-06,
+ "loss": 3.4696545600891113,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.009728053584694862,
+ "learning_rate": 9.825266529007601e-06,
+ "loss": 3.512150287628174,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.00964285247027874,
+ "learning_rate": 9.782736213758782e-06,
+ "loss": 3.5531206130981445,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.009474014863371849,
+ "learning_rate": 9.740442138363317e-06,
+ "loss": 3.6525323390960693,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.009357532486319542,
+ "learning_rate": 9.698384336896679e-06,
+ "loss": 3.682213306427002,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.009621409699320793,
+ "learning_rate": 9.656562843244114e-06,
+ "loss": 3.6298398971557617,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.00970351230353117,
+ "learning_rate": 9.614977691100445e-06,
+ "loss": 3.6185638904571533,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.009378251619637012,
+ "learning_rate": 9.57362891397007e-06,
+ "loss": 3.6858792304992676,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.009445331990718842,
+ "learning_rate": 9.532516545167004e-06,
+ "loss": 3.6551437377929688,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.009615367278456688,
+ "learning_rate": 9.491640617814634e-06,
+ "loss": 3.591850757598877,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.009544795379042625,
+ "learning_rate": 9.451001164846092e-06,
+ "loss": 3.590451717376709,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.00954260490834713,
+ "learning_rate": 9.410598219003725e-06,
+ "loss": 3.6003832817077637,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.009324369952082634,
+ "learning_rate": 9.370431812839556e-06,
+ "loss": 3.640563488006592,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.009533345699310303,
+ "learning_rate": 9.330501978714857e-06,
+ "loss": 3.6119484901428223,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.009618030861020088,
+ "learning_rate": 9.290808748800408e-06,
+ "loss": 3.5899622440338135,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.00952323991805315,
+ "learning_rate": 9.25135215507634e-06,
+ "loss": 3.6339168548583984,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.009529752656817436,
+ "learning_rate": 9.212132229332094e-06,
+ "loss": 3.667510986328125,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.00962511170655489,
+ "learning_rate": 9.173149003166458e-06,
+ "loss": 3.5522398948669434,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.009424392133951187,
+ "learning_rate": 9.134402507987533e-06,
+ "loss": 3.6537179946899414,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.009649360552430153,
+ "learning_rate": 9.095892775012672e-06,
+ "loss": 3.4790749549865723,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.009378692135214806,
+ "learning_rate": 9.057619835268437e-06,
+ "loss": 3.716139554977417,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.009311984293162823,
+ "learning_rate": 9.019583719590641e-06,
+ "loss": 3.759949207305908,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.009517094120383263,
+ "learning_rate": 8.981784458624375e-06,
+ "loss": 3.625643730163574,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.009392857551574707,
+ "learning_rate": 8.944222082823717e-06,
+ "loss": 3.764169216156006,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.009553708136081696,
+ "learning_rate": 8.906896622452055e-06,
+ "loss": 3.657325267791748,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.00948408991098404,
+ "learning_rate": 8.86980810758183e-06,
+ "loss": 3.612187147140503,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.009496260434389114,
+ "learning_rate": 8.832956568094596e-06,
+ "loss": 3.7150979042053223,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.009462874382734299,
+ "learning_rate": 8.796342033680928e-06,
+ "loss": 3.473421096801758,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.009494519792497158,
+ "learning_rate": 8.759964533840574e-06,
+ "loss": 3.6803483963012695,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.00949040986597538,
+ "learning_rate": 8.723824097882145e-06,
+ "loss": 3.6070780754089355,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.00958753377199173,
+ "learning_rate": 8.687920754923393e-06,
+ "loss": 3.564845085144043,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.009475278668105602,
+ "learning_rate": 8.652254533890956e-06,
+ "loss": 3.6858773231506348,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.009536261670291424,
+ "learning_rate": 8.616825463520493e-06,
+ "loss": 3.7173585891723633,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.009468179196119308,
+ "learning_rate": 8.581633572356576e-06,
+ "loss": 3.6662817001342773,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.00928191002458334,
+ "learning_rate": 8.546678888752629e-06,
+ "loss": 3.7463910579681396,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.012737829238176346,
+ "learning_rate": 8.51196144087103e-06,
+ "loss": 3.6703743934631348,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 4.819639205932617,
+ "eval_runtime": 84.1531,
+ "eval_samples_per_second": 29.019,
+ "eval_steps_per_second": 1.818,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.009436150081455708,
+ "learning_rate": 8.477481256683005e-06,
+ "loss": 3.6188738346099854,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.009436327964067459,
+ "learning_rate": 8.44323836396864e-06,
+ "loss": 3.643228530883789,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.009493808262050152,
+ "learning_rate": 8.409232790316763e-06,
+ "loss": 3.589625835418701,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.009454215876758099,
+ "learning_rate": 8.375464563125094e-06,
+ "loss": 3.620560646057129,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.009425287134945393,
+ "learning_rate": 8.341933709600102e-06,
+ "loss": 3.6255578994750977,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.009695774875581264,
+ "learning_rate": 8.308640256756916e-06,
+ "loss": 3.458927631378174,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.009413027204573154,
+ "learning_rate": 8.275584231419512e-06,
+ "loss": 3.62363862991333,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.009411795064806938,
+ "learning_rate": 8.24276566022055e-06,
+ "loss": 3.6357107162475586,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.00929294154047966,
+ "learning_rate": 8.21018456960132e-06,
+ "loss": 3.7401275634765625,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.009308984503149986,
+ "learning_rate": 8.177840985811858e-06,
+ "loss": 3.785318613052368,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.009394552558660507,
+ "learning_rate": 8.145734934910757e-06,
+ "loss": 3.723269462585449,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.009660056792199612,
+ "learning_rate": 8.113866442765364e-06,
+ "loss": 3.4617106914520264,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.009538508020341396,
+ "learning_rate": 8.082235535051449e-06,
+ "loss": 3.6809706687927246,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.009561891667544842,
+ "learning_rate": 8.050842237253533e-06,
+ "loss": 3.6805849075317383,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.009645827114582062,
+ "learning_rate": 8.019686574664564e-06,
+ "loss": 3.6236581802368164,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.0093872444704175,
+ "learning_rate": 7.988768572386171e-06,
+ "loss": 3.60379958152771,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.009488481096923351,
+ "learning_rate": 7.958088255328415e-06,
+ "loss": 3.684044361114502,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.009675730019807816,
+ "learning_rate": 7.927645648209837e-06,
+ "loss": 3.5034732818603516,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.009552563540637493,
+ "learning_rate": 7.897440775557506e-06,
+ "loss": 3.6385226249694824,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.009661439806222916,
+ "learning_rate": 7.867473661706946e-06,
+ "loss": 3.5667247772216797,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.00955583993345499,
+ "learning_rate": 7.837744330802136e-06,
+ "loss": 3.515598773956299,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.009417926892638206,
+ "learning_rate": 7.808252806795446e-06,
+ "loss": 3.665489673614502,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.009613867849111557,
+ "learning_rate": 7.778999113447673e-06,
+ "loss": 3.5000057220458984,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.009504708461463451,
+ "learning_rate": 7.749983274327994e-06,
+ "loss": 3.517815351486206,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.009535107761621475,
+ "learning_rate": 7.721205312813921e-06,
+ "loss": 3.6529147624969482,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.009736400097608566,
+ "learning_rate": 7.69266525209132e-06,
+ "loss": 3.572014331817627,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.00966602098196745,
+ "learning_rate": 7.664363115154476e-06,
+ "loss": 3.600658893585205,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.009428628720343113,
+ "learning_rate": 7.636298924805872e-06,
+ "loss": 3.680546283721924,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.009496334940195084,
+ "learning_rate": 7.608472703656282e-06,
+ "loss": 3.6156206130981445,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.009430350735783577,
+ "learning_rate": 7.580884474124833e-06,
+ "loss": 3.6632022857666016,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.009451878257095814,
+ "learning_rate": 7.55353425843888e-06,
+ "loss": 3.606520652770996,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.009415857493877411,
+ "learning_rate": 7.526422078633939e-06,
+ "loss": 3.6744251251220703,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.0095586609095335,
+ "learning_rate": 7.4995479565538476e-06,
+ "loss": 3.5359246730804443,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.009569894522428513,
+ "learning_rate": 7.4729119138506044e-06,
+ "loss": 3.626284599304199,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.009513670578598976,
+ "learning_rate": 7.446513971984366e-06,
+ "loss": 3.5102837085723877,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.00941598042845726,
+ "learning_rate": 7.420354152223485e-06,
+ "loss": 3.6317036151885986,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.009562633000314236,
+ "learning_rate": 7.394432475644402e-06,
+ "loss": 3.5584754943847656,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.009544653818011284,
+ "learning_rate": 7.368748963131854e-06,
+ "loss": 3.582338571548462,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.009630084969103336,
+ "learning_rate": 7.343303635378537e-06,
+ "loss": 3.5029783248901367,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.009345432743430138,
+ "learning_rate": 7.31809651288524e-06,
+ "loss": 3.6377110481262207,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.009561308659613132,
+ "learning_rate": 7.2931276159609475e-06,
+ "loss": 3.552962303161621,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.009512349031865597,
+ "learning_rate": 7.268396964722602e-06,
+ "loss": 3.6734910011291504,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.009341378696262836,
+ "learning_rate": 7.243904579095308e-06,
+ "loss": 3.711900234222412,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.009497747756540775,
+ "learning_rate": 7.219650478812065e-06,
+ "loss": 3.6014318466186523,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.009344355203211308,
+ "learning_rate": 7.195634683413996e-06,
+ "loss": 3.611039876937866,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.00947493501007557,
+ "learning_rate": 7.171857212250225e-06,
+ "loss": 3.6334376335144043,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.009457139298319817,
+ "learning_rate": 7.148318084477766e-06,
+ "loss": 3.573287010192871,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.00961324479430914,
+ "learning_rate": 7.125017319061728e-06,
+ "loss": 3.524115562438965,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.009693956933915615,
+ "learning_rate": 7.101954934775084e-06,
+ "loss": 3.477724075317383,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.009625963866710663,
+ "learning_rate": 7.079130950198802e-06,
+ "loss": 3.6439619064331055,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.009380786679685116,
+ "learning_rate": 7.05654538372171e-06,
+ "loss": 3.673041582107544,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.009455381892621517,
+ "learning_rate": 7.034198253540665e-06,
+ "loss": 3.62744140625,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.009447152726352215,
+ "learning_rate": 7.012089577660255e-06,
+ "loss": 3.6654839515686035,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.009585828520357609,
+ "learning_rate": 6.990219373893128e-06,
+ "loss": 3.6010427474975586,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.009571305476129055,
+ "learning_rate": 6.968587659859665e-06,
+ "loss": 3.496983528137207,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.009762617759406567,
+ "learning_rate": 6.9471944529881376e-06,
+ "loss": 3.4058852195739746,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.009556584060192108,
+ "learning_rate": 6.926039770514686e-06,
+ "loss": 3.63700532913208,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.009584843181073666,
+ "learning_rate": 6.905123629483277e-06,
+ "loss": 3.6889283657073975,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.009465748444199562,
+ "learning_rate": 6.884446046745608e-06,
+ "loss": 3.652881145477295,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.00929694902151823,
+ "learning_rate": 6.8640070389613055e-06,
+ "loss": 3.746005058288574,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.009489123709499836,
+ "learning_rate": 6.843806622597661e-06,
+ "loss": 3.694582939147949,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.009616589173674583,
+ "learning_rate": 6.823844813929796e-06,
+ "loss": 3.5661673545837402,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.009553232230246067,
+ "learning_rate": 6.804121629040597e-06,
+ "loss": 3.511166572570801,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.009545236825942993,
+ "learning_rate": 6.7846370838206455e-06,
+ "loss": 3.618044853210449,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.009450900368392467,
+ "learning_rate": 6.765391193968287e-06,
+ "loss": 3.6474337577819824,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.009479762986302376,
+ "learning_rate": 6.7463839749896335e-06,
+ "loss": 3.685427188873291,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.009475388564169407,
+ "learning_rate": 6.727615442198394e-06,
+ "loss": 3.6144814491271973,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.009475797414779663,
+ "learning_rate": 6.709085610716107e-06,
+ "loss": 3.597034215927124,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.009556205943226814,
+ "learning_rate": 6.690794495471878e-06,
+ "loss": 3.5711073875427246,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.00958784855902195,
+ "learning_rate": 6.672742111202543e-06,
+ "loss": 3.616248607635498,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.009580375626683235,
+ "learning_rate": 6.654928472452569e-06,
+ "loss": 3.5927953720092773,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.012957250699400902,
+ "learning_rate": 6.637353593574088e-06,
+ "loss": 3.6850740909576416,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 4.765819072723389,
+ "eval_runtime": 85.2156,
+ "eval_samples_per_second": 28.657,
+ "eval_steps_per_second": 1.795,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.009519970044493675,
+ "learning_rate": 6.620017488726867e-06,
+ "loss": 3.5862300395965576,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.00950262974947691,
+ "learning_rate": 6.602920171878265e-06,
+ "loss": 3.5104942321777344,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.009426183998584747,
+ "learning_rate": 6.5860616568033465e-06,
+ "loss": 3.5459203720092773,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.009478611871600151,
+ "learning_rate": 6.569441957084671e-06,
+ "loss": 3.6502909660339355,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.009509559720754623,
+ "learning_rate": 6.5530610861124e-06,
+ "loss": 3.657668352127075,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.0094247842207551,
+ "learning_rate": 6.536919057084357e-06,
+ "loss": 3.620579481124878,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.00947605725377798,
+ "learning_rate": 6.521015883005866e-06,
+ "loss": 3.5996155738830566,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.00945874210447073,
+ "learning_rate": 6.5053515766898195e-06,
+ "loss": 3.6223278045654297,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.00946512445807457,
+ "learning_rate": 6.489926150756674e-06,
+ "loss": 3.598463296890259,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.009626350365579128,
+ "learning_rate": 6.4747396176344176e-06,
+ "loss": 3.5796213150024414,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.00942300446331501,
+ "learning_rate": 6.459791989558542e-06,
+ "loss": 3.549903392791748,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.00949977245181799,
+ "learning_rate": 6.445083278572134e-06,
+ "loss": 3.573875904083252,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.009349550120532513,
+ "learning_rate": 6.430613496525685e-06,
+ "loss": 3.600240468978882,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.009411615319550037,
+ "learning_rate": 6.416382655077248e-06,
+ "loss": 3.6366682052612305,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.009538221172988415,
+ "learning_rate": 6.402390765692381e-06,
+ "loss": 3.6083197593688965,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.009455300867557526,
+ "learning_rate": 6.388637839644073e-06,
+ "loss": 3.6720757484436035,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.009429805912077427,
+ "learning_rate": 6.375123888012812e-06,
+ "loss": 3.593806028366089,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.009391848929226398,
+ "learning_rate": 6.361848921686523e-06,
+ "loss": 3.6830086708068848,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.009316490963101387,
+ "learning_rate": 6.348812951360662e-06,
+ "loss": 3.671074151992798,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.009368233382701874,
+ "learning_rate": 6.33601598753802e-06,
+ "loss": 3.636545419692993,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.00946806836873293,
+ "learning_rate": 6.323458040528923e-06,
+ "loss": 3.6786108016967773,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.009310170076787472,
+ "learning_rate": 6.311139120451062e-06,
+ "loss": 3.7009716033935547,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.009569099172949791,
+ "learning_rate": 6.299059237229567e-06,
+ "loss": 3.511026382446289,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.009562722407281399,
+ "learning_rate": 6.287218400596961e-06,
+ "loss": 3.471055507659912,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.009414838626980782,
+ "learning_rate": 6.27561662009321e-06,
+ "loss": 3.611273765563965,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.009446661919355392,
+ "learning_rate": 6.264253905065675e-06,
+ "loss": 3.6231868267059326,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.009435206651687622,
+ "learning_rate": 6.2531302646690866e-06,
+ "loss": 3.5629005432128906,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.00950065441429615,
+ "learning_rate": 6.242245707865545e-06,
+ "loss": 3.5422630310058594,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.009494967758655548,
+ "learning_rate": 6.23160024342455e-06,
+ "loss": 3.6479127407073975,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.009455340914428234,
+ "learning_rate": 6.221193879922969e-06,
+ "loss": 3.6012845039367676,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.009467056952416897,
+ "learning_rate": 6.211026625745005e-06,
+ "loss": 3.647042751312256,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.009477070532739162,
+ "learning_rate": 6.201098489082232e-06,
+ "loss": 3.580453395843506,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.00943760946393013,
+ "learning_rate": 6.191409477933554e-06,
+ "loss": 3.6130988597869873,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.009583137929439545,
+ "learning_rate": 6.18195960010528e-06,
+ "loss": 3.503570318222046,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.009396062232553959,
+ "learning_rate": 6.172748863210954e-06,
+ "loss": 3.518091917037964,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.00958438590168953,
+ "learning_rate": 6.163777274671552e-06,
+ "loss": 3.507266044616699,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.009428712539374828,
+ "learning_rate": 6.155044841715289e-06,
+ "loss": 3.5857300758361816,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.009460303001105785,
+ "learning_rate": 6.146551571377715e-06,
+ "loss": 3.6793367862701416,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.009323992766439915,
+ "learning_rate": 6.1382974705017456e-06,
+ "loss": 3.67718505859375,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.009378695860505104,
+ "learning_rate": 6.130282545737535e-06,
+ "loss": 3.588444709777832,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.009379970841109753,
+ "learning_rate": 6.1225068035425725e-06,
+ "loss": 3.635251522064209,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.009520449675619602,
+ "learning_rate": 6.114970250181616e-06,
+ "loss": 3.5091583728790283,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.009636976756155491,
+ "learning_rate": 6.107672891726724e-06,
+ "loss": 3.4746484756469727,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.009522352367639542,
+ "learning_rate": 6.1006147340572916e-06,
+ "loss": 3.5818653106689453,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.00940838735550642,
+ "learning_rate": 6.093795782859917e-06,
+ "loss": 3.640763998031616,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.009347470477223396,
+ "learning_rate": 6.087216043628502e-06,
+ "loss": 3.6366801261901855,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.009637929499149323,
+ "learning_rate": 6.0808755216642146e-06,
+ "loss": 3.51821231842041,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.009451772086322308,
+ "learning_rate": 6.07477422207556e-06,
+ "loss": 3.6924452781677246,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.009402730502188206,
+ "learning_rate": 6.06891214977818e-06,
+ "loss": 3.6426658630371094,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.009319434873759747,
+ "learning_rate": 6.063289309495051e-06,
+ "loss": 3.6536858081817627,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.009316514246165752,
+ "learning_rate": 6.057905705756421e-06,
+ "loss": 3.693699836730957,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.009616664610803127,
+ "learning_rate": 6.052761342899737e-06,
+ "loss": 3.6515378952026367,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.009529332630336285,
+ "learning_rate": 6.0478562250697185e-06,
+ "loss": 3.606088399887085,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.009474705904722214,
+ "learning_rate": 6.043190356218355e-06,
+ "loss": 3.582862377166748,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.00945349596440792,
+ "learning_rate": 6.038763740104835e-06,
+ "loss": 3.6043641567230225,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.009414047934114933,
+ "learning_rate": 6.034576380295586e-06,
+ "loss": 3.5539112091064453,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.009417577646672726,
+ "learning_rate": 6.030628280164338e-06,
+ "loss": 3.7944841384887695,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.009474282152950764,
+ "learning_rate": 6.026919442891958e-06,
+ "loss": 3.527096748352051,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.009554212912917137,
+ "learning_rate": 6.023449871466615e-06,
+ "loss": 3.477097272872925,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.009382582269608974,
+ "learning_rate": 6.020219568683678e-06,
+ "loss": 3.620926856994629,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.009469614364206791,
+ "learning_rate": 6.0172285371456925e-06,
+ "loss": 3.696242570877075,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.009473949670791626,
+ "learning_rate": 6.014476779262568e-06,
+ "loss": 3.5924506187438965,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.009529159404337406,
+ "learning_rate": 6.011964297251285e-06,
+ "loss": 3.5087835788726807,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.009625169448554516,
+ "learning_rate": 6.0096910931361275e-06,
+ "loss": 3.5250706672668457,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.00966966338455677,
+ "learning_rate": 6.007657168748551e-06,
+ "loss": 3.572782516479492,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.009380048140883446,
+ "learning_rate": 6.005862525727277e-06,
+ "loss": 3.710751533508301,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.00932576134800911,
+ "learning_rate": 6.0043071655181986e-06,
+ "loss": 3.6177048683166504,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.009382816962897778,
+ "learning_rate": 6.002991089374446e-06,
+ "loss": 3.669862985610962,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.009384086355566978,
+ "learning_rate": 6.0019142983563875e-06,
+ "loss": 3.643853187561035,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.009561398066580296,
+ "learning_rate": 6.001076793331555e-06,
+ "loss": 3.5921061038970947,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.009411932900547981,
+ "learning_rate": 6.000478574974689e-06,
+ "loss": 3.641071319580078,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.012854442931711674,
+ "learning_rate": 6.000119643767767e-06,
+ "loss": 3.6327686309814453,
+ "step": 3600
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": true
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.5341364594081792e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-3600/training_args.bin b/runs/i5-exp-lm/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-72/chat_template.jinja b/runs/i5-exp-lm/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-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/i5-exp-lm/checkpoint-72/config.json b/runs/i5-exp-lm/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-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.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-72/generation_config.json b/runs/i5-exp-lm/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-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.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-72/model.safetensors b/runs/i5-exp-lm/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..342940fdd8166f7bfd6306467ce01c3ae316c4d6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f7f46e57cfb93c600fcd80fa24d3c99dbb0f7eb447940747587e1f338b762c1a
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-72/optimizer.pt b/runs/i5-exp-lm/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..635adae7ca55cac2625baf48eca893dbd0bff8b1
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:58bd73f85867d7cb093037200925b03b8f682c39d204e73a678f73ad0cc06c62
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-72/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c9997ba5dfb3dad85ce07d3d01f5dd0c21b73e04
--- /dev/null
+++ b/runs/i5-exp-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/i5-exp-lm/checkpoint-72/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..54a1eb69db406a52562ce734a2e03b904e6e9ef8
--- /dev/null
+++ b/runs/i5-exp-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/i5-exp-lm/checkpoint-72/scheduler.pt b/runs/i5-exp-lm/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..43cf114590f1088fd438450226c42885d843da41
--- /dev/null
+++ b/runs/i5-exp-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/i5-exp-lm/checkpoint-72/tokenizer.json b/runs/i5-exp-lm/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-72/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-72/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-72/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-72/trainer_state.json b/runs/i5-exp-lm/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b01c74eefcd3d0c0ebc7e4ce628fc0e43c3488ac
--- /dev/null
+++ b/runs/i5-exp-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": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 3.0682729188163584e+16,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-72/training_args.bin b/runs/i5-exp-lm/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792
diff --git a/runs/i5-exp-lm/checkpoint-720/chat_template.jinja b/runs/i5-exp-lm/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/i5-exp-lm/checkpoint-720/config.json b/runs/i5-exp-lm/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f886b7fa222409dbd74c80cbb5defe87369eef13
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151676
+}
diff --git a/runs/i5-exp-lm/checkpoint-720/generation_config.json b/runs/i5-exp-lm/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/i5-exp-lm/checkpoint-720/model.safetensors b/runs/i5-exp-lm/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ae122e409b831af1cc3ab537dedb82089d174fcd
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e3a9eb883e38eb37550c091c66b5b70147ff7749a189822969fa0103de722785
+size 583366472
diff --git a/runs/i5-exp-lm/checkpoint-720/optimizer.pt b/runs/i5-exp-lm/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..218d99c9b474e87cd2da00ff2a07a386507dac19
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:603eaeb494822818792b997cf92f01580630efe6fc4dbe1ac42fb75b2a45d5fe
+size 1166845818
diff --git a/runs/i5-exp-lm/checkpoint-720/rng_state_0.pth b/runs/i5-exp-lm/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..12a11f572a81a3dd37524aa7ef6bfbf83f74498c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f10ebc6a2af13e5a0b53868b480d289c83fd0b9179c9b967f20a6aace8f96aac
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-720/rng_state_1.pth b/runs/i5-exp-lm/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2188331e014f471ad26d1f3a9ad844b7223bbe4a
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6b8dd1cfc1556f96d5c53c4d31abdc6c37ac3d110c796ee3b1e4c95941361882
+size 14512
diff --git a/runs/i5-exp-lm/checkpoint-720/scheduler.pt b/runs/i5-exp-lm/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..53133f8d1ca0990636972b84579aec1212febb2a
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea248f5cdc3b9f2d6793617acdaa11d93bab34c0a87ea94ea6aaabc148225da6
+size 1064
diff --git a/runs/i5-exp-lm/checkpoint-720/tokenizer.json b/runs/i5-exp-lm/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..d595c2d6dad65d40c96c823ff0d46c752e299f09
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
+size 11425039
diff --git a/runs/i5-exp-lm/checkpoint-720/tokenizer_config.json b/runs/i5-exp-lm/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..243f876b87a9a13c0465135ed0960d6e5bc0fdf6
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/tokenizer_config.json
@@ -0,0 +1,23 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>",
+ "<|next_1_pred|>",
+ "<|next_2_pred|>",
+ "<|next_3_pred|>",
+ "<|next_4_pred|>",
+ "<|next_5_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-720/trainer_state.json b/runs/i5-exp-lm/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..a98d6412a1ff80eece82c33b7a7b70b552273a73
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/trainer_state.json
@@ -0,0 +1,5146 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 10.0,
+ "eval_steps": 500,
+ "global_step": 720,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 0.09526057541370392,
+ "learning_rate": 0.0,
+ "loss": 12.018945693969727,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 0.09382691979408264,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.020984649658203,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 0.09196038544178009,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.975822448730469,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 0.08264771848917007,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.890902519226074,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 0.07342050224542618,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.788317680358887,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 0.07147148251533508,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.678014755249023,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 0.06631334871053696,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.568239212036133,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 0.060602981597185135,
+ "learning_rate": 4.2e-05,
+ "loss": 11.477121353149414,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 0.057498082518577576,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.387786865234375,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 0.05576487258076668,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.311970710754395,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 0.05416557192802429,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.251163482666016,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 0.05362330749630928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194375038146973,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 0.05328343063592911,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.147153854370117,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 0.053057413548231125,
+ "learning_rate": 7.8e-05,
+ "loss": 11.102828979492188,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 0.053128432482481,
+ "learning_rate": 8.4e-05,
+ "loss": 11.057168960571289,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 0.05297734588384628,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.009328842163086,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 0.05318862944841385,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.952483177185059,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 0.05286109820008278,
+ "learning_rate": 0.000102,
+ "loss": 10.896846771240234,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 0.05287238582968712,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.833812713623047,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 0.052941400557756424,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.7664213180542,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 0.05213508754968643,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.701665878295898,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 0.05221231281757355,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.618175506591797,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 0.05237859487533569,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.536003112792969,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 0.05214565247297287,
+ "learning_rate": 0.000138,
+ "loss": 10.453365325927734,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 0.05196920409798622,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.367090225219727,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 0.0524299219250679,
+ "learning_rate": 0.00015,
+ "loss": 10.26744270324707,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 0.05159122124314308,
+ "learning_rate": 0.000156,
+ "loss": 10.18840217590332,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 0.05253886058926582,
+ "learning_rate": 0.000162,
+ "loss": 10.079068183898926,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 0.05162178725004196,
+ "learning_rate": 0.000168,
+ "loss": 9.99414348602295,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 0.05187256634235382,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.883649826049805,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 0.05121323838829994,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.79593563079834,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 0.051147885620594025,
+ "learning_rate": 0.000186,
+ "loss": 9.68751049041748,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 0.050690747797489166,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.579681396484375,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 0.05070652812719345,
+ "learning_rate": 0.000198,
+ "loss": 9.473594665527344,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 0.049497850239276886,
+ "learning_rate": 0.000204,
+ "loss": 9.387186050415039,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 0.04913552105426788,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.271199226379395,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 0.04900689050555229,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.160658836364746,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 0.04853792116045952,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.053976058959961,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 0.048385802656412125,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.94680404663086,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 0.04726085439324379,
+ "learning_rate": 0.000234,
+ "loss": 8.858827590942383,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 0.046261899173259735,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.770745277404785,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 0.04542525112628937,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.668274879455566,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 0.044548504054546356,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.558286666870117,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 0.0422942116856575,
+ "learning_rate": 0.000258,
+ "loss": 8.504968643188477,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 0.04093344882130623,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.417146682739258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 0.03989794850349426,
+ "learning_rate": 0.00027,
+ "loss": 8.335981369018555,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 0.038424454629421234,
+ "learning_rate": 0.000276,
+ "loss": 8.236722946166992,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.03689582645893097,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.147737503051758,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.034862976521253586,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.091605186462402,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.03191143274307251,
+ "learning_rate": 0.000294,
+ "loss": 8.022540092468262,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.030203983187675476,
+ "learning_rate": 0.0003,
+ "loss": 7.972560882568359,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.027557795867323875,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.920314788818359,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.027786875143647194,
+ "learning_rate": 0.000312,
+ "loss": 7.8528547286987305,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.024185100570321083,
+ "learning_rate": 0.000318,
+ "loss": 7.827945709228516,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.02015257626771927,
+ "learning_rate": 0.000324,
+ "loss": 7.7863874435424805,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.01622624322772026,
+ "learning_rate": 0.00033,
+ "loss": 7.749345779418945,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.0146990567445755,
+ "learning_rate": 0.000336,
+ "loss": 7.743653297424316,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.011839881539344788,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.72216796875,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.009100224822759628,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.69500732421875,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.0078881261870265,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.684985160827637,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.010260523296892643,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.6472625732421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.0074198064394295216,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.661228179931641,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.009027183055877686,
+ "learning_rate": 0.000372,
+ "loss": 7.651755332946777,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.007379722315818071,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.634108543395996,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.00909359846264124,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.643302917480469,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.007658797316253185,
+ "learning_rate": 0.00039,
+ "loss": 7.631866455078125,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 0.006244250573217869,
+ "learning_rate": 0.000396,
+ "loss": 7.619111061096191,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.006206246092915535,
+ "learning_rate": 0.000402,
+ "loss": 7.588724136352539,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.007156792096793652,
+ "learning_rate": 0.000408,
+ "loss": 7.5924201011657715,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.008793050423264503,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.565635681152344,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.010780896060168743,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.565919876098633,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.011238881386816502,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.574991226196289,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.574178695678711,
+ "eval_runtime": 84.7843,
+ "eval_samples_per_second": 28.802,
+ "eval_steps_per_second": 1.805,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.013201026245951653,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.557216644287109,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.017001401633024216,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.563766956329346,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.013905483298003674,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.528573989868164,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.006174445617944002,
+ "learning_rate": 0.00045,
+ "loss": 7.525404930114746,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 0.008849293924868107,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.499965667724609,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.01149623654782772,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.479113578796387,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.020743971690535545,
+ "learning_rate": 0.000468,
+ "loss": 7.524241924285889,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.043270740658044815,
+ "learning_rate": 0.000474,
+ "loss": 7.540229320526123,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.03610096499323845,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.5456743240356445,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.02049943618476391,
+ "learning_rate": 0.000486,
+ "loss": 7.517362117767334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.012318520806729794,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.473165035247803,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.025130026042461395,
+ "learning_rate": 0.000498,
+ "loss": 7.4696550369262695,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.011144708842039108,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.436892986297607,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.013775513507425785,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.433109283447266,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.014034568332135677,
+ "learning_rate": 0.000516,
+ "loss": 7.453051567077637,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.011862771585583687,
+ "learning_rate": 0.000522,
+ "loss": 7.457511901855469,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.009155221283435822,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3993024826049805,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.01588292233645916,
+ "learning_rate": 0.000534,
+ "loss": 7.428092956542969,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.007991801016032696,
+ "learning_rate": 0.00054,
+ "loss": 7.406790733337402,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.009959339164197445,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.408715724945068,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.009798928163945675,
+ "learning_rate": 0.000552,
+ "loss": 7.380825996398926,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.01131748128682375,
+ "learning_rate": 0.000558,
+ "loss": 7.338321685791016,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.010120490565896034,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.355673789978027,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.008243661373853683,
+ "learning_rate": 0.00057,
+ "loss": 7.387016296386719,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.008031056262552738,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.3222222328186035,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.00824623741209507,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.351551055908203,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.008711446076631546,
+ "learning_rate": 0.000588,
+ "loss": 7.352150917053223,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.012590705417096615,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.331461429595947,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.01370396837592125,
+ "learning_rate": 0.0006,
+ "loss": 7.355157852172852,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.011503605172038078,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.313737392425537,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.008999514393508434,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.3382768630981445,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.013120061717927456,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.315630912780762,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.007088413927704096,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.310041427612305,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.010515011847019196,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.288690090179443,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.00886920653283596,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.278006553649902,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.008256828412413597,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.279146194458008,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.009640699252486229,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.257747650146484,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.013631509616971016,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.2548322677612305,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.011158721521496773,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.268631935119629,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.007857168093323708,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.266288757324219,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.008797061629593372,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.212240219116211,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.010728689841926098,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.265908241271973,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.008476014249026775,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.1944355964660645,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.0075050778687000275,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.242432594299316,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.00947875902056694,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.185863971710205,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.01672152429819107,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 7.195423603057861,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.02463761903345585,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 7.240140914916992,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.02476632222533226,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 7.190159797668457,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.013066260144114494,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 7.181842803955078,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.016913827508687973,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 7.201496124267578,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.019018718972802162,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 7.170899391174316,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.01471597421914339,
+ "learning_rate": 0.000599936710690505,
+ "loss": 7.164512634277344,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.008691678754985332,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 7.174782752990723,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.010835360735654831,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 7.14585018157959,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.012424490414559841,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 7.189150810241699,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.02425580658018589,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 7.2069854736328125,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.023890314623713493,
+ "learning_rate": 0.00059990620421714,
+ "loss": 7.143924713134766,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.01211968157440424,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 7.099638938903809,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.014159577898681164,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 7.121971130371094,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.011391443200409412,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 7.047320365905762,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.010908491909503937,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 7.073336601257324,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.009650186635553837,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 7.053520679473877,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.017583204433321953,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 7.059045791625977,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.035941459238529205,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 7.082032680511475,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.0441225990653038,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 7.115973472595215,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.019960252568125725,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 7.0510759353637695,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.019478311762213707,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 7.078952789306641,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.012617052532732487,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 7.08969783782959,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.020100833848118782,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 7.031242847442627,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.01584663800895214,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.990634918212891,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.01378232054412365,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.975073337554932,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.012255864217877388,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.971436023712158,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.0224690437316895,
+ "eval_runtime": 84.8069,
+ "eval_samples_per_second": 28.795,
+ "eval_steps_per_second": 1.804,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.01703340746462345,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.961453914642334,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.02462400682270527,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.9878435134887695,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.025273887440562248,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.99406623840332,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.027656232938170433,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.970871448516846,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.01797392964363098,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.996675491333008,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.012201448902487755,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.978545188903809,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.01587921567261219,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.9294257164001465,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.01215942669659853,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.965445518493652,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.012689683586359024,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.9311676025390625,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.011079316958785057,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.847512245178223,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.009650212712585926,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.939083099365234,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.010130752809345722,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.919239044189453,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.007576869800686836,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.904119968414307,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.011714110150933266,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.803057670593262,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.010633084923028946,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.865846633911133,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.011667722836136818,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.864357948303223,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.01258345227688551,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.868409156799316,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.015886232256889343,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.817723751068115,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.018246417865157127,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.811866760253906,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.020568199455738068,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.865074634552002,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 0.016871578991413116,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.873766899108887,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.008790477178990841,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.76958703994751,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.015073317103087902,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.782319068908691,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.012521711178123951,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.75228214263916,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.009346979670226574,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.750884056091309,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.013239443302154541,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.760242462158203,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.013733967207372189,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.787421226501465,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.020505527034401894,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.757508277893066,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.03217111527919769,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.789676666259766,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.033021245151758194,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.8254594802856445,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.025899983942508698,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.739044189453125,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.030216341838240623,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.8083319664001465,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.036739055067300797,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.7186079025268555,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.03865351155400276,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.7738142013549805,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.027647022157907486,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.773124694824219,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.020899683237075806,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.748958110809326,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.015688462182879448,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.702776908874512,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.017814693972468376,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.748667240142822,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.015050851739943027,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.726056098937988,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.027419932186603546,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.727022647857666,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.025465290993452072,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.6981916427612305,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.011060134507715702,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.703153610229492,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.017791543155908585,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.646663665771484,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.011765481904149055,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.680005073547363,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.014489581808447838,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.643831729888916,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.009504054673016071,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.688320159912109,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.010419946163892746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.650338172912598,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.00797025766223669,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.67802619934082,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.008800859563052654,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.664027214050293,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.008009099401533604,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.6256608963012695,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.007652360014617443,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.703031063079834,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.00814979150891304,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.623237609863281,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.00810525193810463,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.590479373931885,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.009203776717185974,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.590914726257324,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.010621120221912861,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.574692249298096,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.01642468385398388,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.607333183288574,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.027669981122016907,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.551205635070801,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.02802988328039646,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.56379508972168,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 0.011111930012702942,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.5975661277771,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.012877206318080425,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.541018962860107,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.009354211390018463,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.574802398681641,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.012405605055391788,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.540461540222168,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.014359621331095695,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.4784393310546875,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.023897338658571243,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.4827680587768555,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.05780332535505295,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.533738136291504,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.048489153385162354,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.728263854980469,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.032727696001529694,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.630455017089844,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.03282475471496582,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.609955787658691,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.020915158092975616,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.625823020935059,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.023098062723875046,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.63156270980835,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.019228646531701088,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.606902122497559,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.01482803001999855,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.579372882843018,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.576164722442627,
+ "eval_runtime": 85.746,
+ "eval_samples_per_second": 28.479,
+ "eval_steps_per_second": 1.784,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.018055720254778862,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.586709976196289,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.0124927693977952,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.534017562866211,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.012413958087563515,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.547540664672852,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.011870898306369781,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.585023880004883,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.009954924695193768,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.475130558013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.011471913196146488,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.502546787261963,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.0077778249979019165,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.513181686401367,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.009797622449696064,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.481588363647461,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.007603652775287628,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.491241455078125,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.008722620084881783,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.480809211730957,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.008688337169587612,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.38303279876709,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.009298141114413738,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.463663578033447,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.0074563538655638695,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.4673075675964355,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.007025694940239191,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.420698165893555,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.008215022273361683,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.468766212463379,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.007869688794016838,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.455402851104736,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 0.006570734549313784,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.414380073547363,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.006756683811545372,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.408514499664307,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.0069223493337631226,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.474529266357422,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.007772677578032017,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.382323265075684,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.007518109865486622,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.454924583435059,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.010381974279880524,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.37711238861084,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.016346899792551994,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.412154197692871,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.026825418695807457,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.446310520172119,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.02915172092616558,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.399540424346924,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.016679249703884125,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.404694557189941,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.03072337619960308,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.454288482666016,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.03670244291424751,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.421853065490723,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.038081664592027664,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.431890487670898,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.04129117354750633,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.490490913391113,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.024048244580626488,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.387487411499023,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.021159496158361435,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.385387420654297,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.017060227692127228,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.447067737579346,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.01741074211895466,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.390790939331055,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.011906762607395649,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.403103828430176,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.014391399919986725,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.364382743835449,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.012574911117553711,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.265556335449219,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.013564642518758774,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.315080642700195,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.012251069769263268,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.366371154785156,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.012670563533902168,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.381699562072754,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.009547164663672447,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.340087890625,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 0.010208703577518463,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.307295322418213,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.010583753697574139,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.321071147918701,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.010764149948954582,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.329379558563232,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.010317439213395119,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.291102409362793,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.009821165353059769,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.233809947967529,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.01146205235272646,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.27435302734375,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.009413921274244785,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.288580417633057,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.008312136866152287,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.245233535766602,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.01052761822938919,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.197474002838135,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.009641683660447598,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.272209167480469,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.010517144575715065,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.239253044128418,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.014859676361083984,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.191608428955078,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.023745384067296982,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.16898250579834,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.02512374147772789,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.349483489990234,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.01301106158643961,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 6.258413791656494,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.01930321380496025,
+ "learning_rate": 0.000596467483454833,
+ "loss": 6.244673728942871,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.016926968470215797,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 6.192346572875977,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.017045889049768448,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 6.162320613861084,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.016467608511447906,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 6.201925277709961,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.018464308232069016,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 6.2393598556518555,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.01637505367398262,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 6.224393844604492,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.010968229733407497,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 6.236468315124512,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.012756618671119213,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 6.1419453620910645,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.01512372586876154,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 6.169801712036133,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.0205294881016016,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 6.21328067779541,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.027739275246858597,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 6.231677055358887,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.02280752919614315,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 6.208623886108398,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.018875762820243835,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 6.089709758758545,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.021873392164707184,
+ "learning_rate": 0.000595914592474791,
+ "loss": 6.181717872619629,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.022416092455387115,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 6.115909576416016,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.023581281304359436,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 6.15938663482666,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.194700241088867,
+ "eval_runtime": 92.1122,
+ "eval_samples_per_second": 26.511,
+ "eval_steps_per_second": 1.661,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.024675492197275162,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 6.205780506134033,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.025258390232920647,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 6.158352851867676,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.016889216378331184,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 6.136494159698486,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.0176410935819149,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 6.163773536682129,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.013598102144896984,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 6.138532638549805,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.013226699084043503,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 6.096251487731934,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.010129330679774284,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 6.108838081359863,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.011973008513450623,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 6.1253662109375,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.011441890150308609,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 6.150867938995361,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.0122589822858572,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 6.062896728515625,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.009766630828380585,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 6.074854850769043,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.011086865328252316,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 6.084615707397461,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.008788954466581345,
+ "learning_rate": 0.000595227087813793,
+ "loss": 6.02265739440918,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.009341884404420853,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 6.081873893737793,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.00880530383437872,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 6.08881950378418,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.009241028688848019,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 6.066699981689453,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.008599666878581047,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 6.054061412811279,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.009182055480778217,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 6.061972141265869,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.013477114029228687,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 6.109114646911621,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.01859326660633087,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 6.045273780822754,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.018548358231782913,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.986276626586914,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.015882711857557297,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 6.002890586853027,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.020711753517389297,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.9817376136779785,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 6.011220932006836,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.043670251965522766,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 6.108426094055176,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.031721509993076324,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 6.146209716796875,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.024956712499260902,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 6.100143909454346,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.0186925046145916,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 6.060022354125977,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.021450990810990334,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 6.062474250793457,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.01991511881351471,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 6.023772239685059,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.021163517609238625,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 6.006808757781982,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.022869128733873367,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 6.032515525817871,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.020263755694031715,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.97743034362793,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.013386471197009087,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.987024307250977,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.01372523419559002,
+ "learning_rate": 0.00059412296156686,
+ "loss": 6.1217498779296875,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.012436475604772568,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 6.015054702758789,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.01214820146560669,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.970428466796875,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.00966881774365902,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.983077526092529,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.010991555638611317,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.8935956954956055,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.008448605425655842,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.981816291809082,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.01023655105382204,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.9430084228515625,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.010093450546264648,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.973609924316406,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.01082108449190855,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 6.0201215744018555,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.013527484610676765,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.939689636230469,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.017427751794457436,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.974202632904053,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.01987813226878643,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.968988418579102,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.020042797550559044,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.9061102867126465,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.02316586673259735,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.951171875,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.02280357852578163,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.9288458824157715,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.014687416143715382,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.863603591918945,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.01342709269374609,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.96198844909668,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.009994965977966785,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.962809085845947,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.013069519773125648,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.894752502441406,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.01136358268558979,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.927143096923828,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.013342288322746754,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.8773698806762695,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.01363386120647192,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.936321258544922,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.013140988536179066,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.9823079109191895,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.013090008869767189,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.834451198577881,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.014739533886313438,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.824153900146484,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.018416626378893852,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.883251190185547,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.018589582294225693,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.927093029022217,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.011194108985364437,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.8120551109313965,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.018792277202010155,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.889129638671875,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.022985246032476425,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.821930885314941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.0215300265699625,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.880353927612305,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.018641863018274307,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.839345932006836,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.024007970467209816,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.867181777954102,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.023598436266183853,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.887855529785156,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.024169834330677986,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.8186540603637695,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.021883321925997734,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.885136604309082,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.021094806492328644,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.881275653839111,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.023462675511837006,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.898017406463623,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.901599407196045,
+ "eval_runtime": 84.8498,
+ "eval_samples_per_second": 28.78,
+ "eval_steps_per_second": 1.803,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.02002531662583351,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.798908233642578,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.020316429436206818,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.898278713226318,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.02161991596221924,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.859194278717041,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.02480013482272625,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.80351448059082,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.023487480357289314,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.838037967681885,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.0187937431037426,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.86063814163208,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.02224404364824295,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.776662826538086,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.018353024497628212,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.844903945922852,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.014952723868191242,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.77018928527832,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.01252970565110445,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.7442731857299805,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.01240489725023508,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.747720718383789,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.010681587271392345,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.700994491577148,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.010542761534452438,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.791322708129883,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.010297628119587898,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.7740936279296875,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.010993611067533493,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.697800636291504,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.009020659141242504,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.726629734039307,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.010850008577108383,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.6837592124938965,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.010553903877735138,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.714142799377441,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.010656928643584251,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.744821071624756,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.011005603708326817,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.701547145843506,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.015471173450350761,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.725330829620361,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.01900334842503071,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.626740455627441,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.015268770977854729,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.718114376068115,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.009850449860095978,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.670790672302246,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.01449375506490469,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.809416770935059,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.013734517619013786,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.725594520568848,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.015792129561305046,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.630507469177246,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.015881020575761795,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.641234397888184,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.018778853118419647,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.679444313049316,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.017248976975679398,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.674781799316406,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.018808409571647644,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.669015884399414,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.018974287435412407,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.713808059692383,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.012983236461877823,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.677434921264648,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.013718773610889912,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.674383640289307,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.015428897924721241,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.705173969268799,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.016269899904727936,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.594168663024902,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.01424349844455719,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.576205253601074,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.013878700323402882,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.678313732147217,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.012490453198552132,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.734973907470703,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.012099599465727806,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.7110209465026855,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.01560781616717577,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.651998996734619,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.022009192034602165,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.573457717895508,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.025015776976943016,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.649316787719727,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.021971935406327248,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.581822395324707,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.02070501074194908,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.544919013977051,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.028321130201220512,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.698768138885498,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.030952483415603638,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.606091499328613,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.028155559673905373,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.667611122131348,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.026302777230739594,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.710519790649414,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.021285010501742363,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.665550708770752,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.02261347696185112,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.727717399597168,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.019857725128531456,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.746331691741943,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.015229827724397182,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.650115013122559,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.01549092959612608,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.606579780578613,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.013494878076016903,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.676207065582275,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.014041380025446415,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.632441520690918,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.014384959824383259,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.683387756347656,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.013244823552668095,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.569708824157715,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.010792545042932034,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.527698516845703,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.01040447037667036,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.581829071044922,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.00915373582392931,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.690970420837402,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.00863773562014103,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.600504398345947,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.008945013396441936,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.509264945983887,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.008663557469844818,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.408083915710449,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.008252454921603203,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.516330718994141,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.008038179948925972,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.446230888366699,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.009004920721054077,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.560239791870117,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.008217358961701393,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.5990095138549805,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.00888393260538578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.542555332183838,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.008884426206350327,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.482442855834961,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.009601140394806862,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.501791954040527,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.011424443684518337,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.446778297424316,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.610228061676025,
+ "eval_runtime": 85.0313,
+ "eval_samples_per_second": 28.719,
+ "eval_steps_per_second": 1.799,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.014449896290898323,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.456626892089844,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.01594909280538559,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.4866743087768555,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.013516034930944443,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.512789249420166,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.012585415504872799,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.495327949523926,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.013994043692946434,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.50651741027832,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.01517702266573906,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.473031044006348,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.017378326505422592,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.502056121826172,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.021755248308181763,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.475003242492676,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.027835670858621597,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.509914875030518,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.027614347636699677,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.424466133117676,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.019767913967370987,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.4778032302856445,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.022723451256752014,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.497001647949219,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.020998571068048477,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.447312355041504,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.01762397214770317,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.457574844360352,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.013854658231139183,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.4114837646484375,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.01307067833840847,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.485147476196289,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.012727065943181515,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.471547603607178,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.01212605182081461,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.363227844238281,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.014834672212600708,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.435027122497559,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.01670207269489765,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.558811187744141,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.013039575889706612,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.362143516540527,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.009616464376449585,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.412875175476074,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.01007695123553276,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.453207015991211,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.010281207039952278,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.448468208312988,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.013441793620586395,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.352182388305664,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.016606908291578293,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.412221908569336,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.016515478491783142,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.470254421234131,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.013550616800785065,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.414937973022461,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.015071428380906582,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.3916215896606445,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.01757894642651081,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.347620964050293,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.01668960601091385,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.368600845336914,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.01738426834344864,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.313345909118652,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.017006536945700645,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.387274742126465,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.01748477853834629,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.385329246520996,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.021237816661596298,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.346649169921875,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.019465478137135506,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.420976638793945,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.01817459426820278,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.3790669441223145,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.02033335529267788,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.427577018737793,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.01893197000026703,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.303861618041992,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.019062036648392677,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.382320404052734,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.019605018198490143,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.321088790893555,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.02094300091266632,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.459839820861816,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.02009180746972561,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.32774019241333,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.02274991385638714,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.368331432342529,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.0183915663510561,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.3594970703125,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.012891478836536407,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.349156379699707,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.014534149318933487,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.500173091888428,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.014687031507492065,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.333735466003418,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.014877120032906532,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.374508857727051,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.013509408570826054,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.369724273681641,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.012404060922563076,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.332921981811523,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.010412025265395641,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.303557395935059,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.008813018910586834,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.429738998413086,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.009596864692866802,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.297217845916748,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.009621196426451206,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.373436450958252,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.010470764711499214,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.233824729919434,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.011120384559035301,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 5.320194244384766,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.010714942589402199,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.2863874435424805,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.011871038936078548,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.335857391357422,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.009766073897480965,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.3252434730529785,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.009517533704638481,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.240680694580078,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.00821911171078682,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.342170715332031,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.008996868506073952,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 5.258355140686035,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.009698064997792244,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.283052921295166,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.00917116180062294,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.272394180297852,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.007857659831643105,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 5.195526123046875,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.009666199795901775,
+ "learning_rate": 0.00058124865204371,
+ "loss": 5.248193740844727,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.011464716866612434,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 5.2589263916015625,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.015007015317678452,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 5.24940299987793,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.01973150297999382,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.320528984069824,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.023864464834332466,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 5.348410606384277,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.023720527067780495,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 5.258916854858398,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.360838413238525,
+ "eval_runtime": 85.8455,
+ "eval_samples_per_second": 28.446,
+ "eval_steps_per_second": 1.782,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.02303452044725418,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 5.20224142074585,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.024370895698666573,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 5.381299018859863,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.023892564699053764,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 5.259424209594727,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.021842066198587418,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 5.350645065307617,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.02167864330112934,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 5.217198848724365,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.021201690658926964,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 5.1486663818359375,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.01990034431219101,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 5.252930164337158,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.02171657234430313,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 5.269706726074219,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.021195944398641586,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 5.251952171325684,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.01920856162905693,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 5.292073726654053,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.016745632514357567,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 5.237212181091309,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.014920338056981564,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 5.233137130737305,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.013784542679786682,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 5.232708930969238,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.014268535189330578,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 5.258511543273926,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.014857783913612366,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 5.2799272537231445,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.014431307092308998,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 5.237598419189453,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.013269471935927868,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 5.1241350173950195,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.015451679937541485,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 5.098300933837891,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.015792889520525932,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 5.158957004547119,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.015974365174770355,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 5.097784996032715,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.01631895825266838,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 5.15241813659668,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.014505140483379364,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 5.250199317932129,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.014560645446181297,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 5.210733413696289,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.014684091322124004,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 5.232139587402344,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.014895223081111908,
+ "learning_rate": 0.000578351407086301,
+ "loss": 5.236129283905029,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.014513793401420116,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 5.243755340576172,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.010355109348893166,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 5.156256198883057,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.00951817911118269,
+ "learning_rate": 0.000578050665972623,
+ "loss": 5.149641990661621,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.010503691621124744,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 5.170676231384277,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.009149257093667984,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 5.085383415222168,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.008867182768881321,
+ "learning_rate": 0.000577747930429834,
+ "loss": 5.124662399291992,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.009290591813623905,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 5.098623752593994,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.009500506334006786,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 5.126633644104004,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.010038231499493122,
+ "learning_rate": 0.00057744320265311,
+ "loss": 5.1244282722473145,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.009660097770392895,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 5.131043910980225,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.009060242213308811,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 5.074737548828125,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.010496240109205246,
+ "learning_rate": 0.000577136484852073,
+ "loss": 5.1403961181640625,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.011687593534588814,
+ "learning_rate": 0.000577033803741424,
+ "loss": 5.12001895904541,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.011786138638854027,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 5.090762138366699,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.012068133801221848,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 5.213443756103516,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.015164826065301895,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 5.103139877319336,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.01642148196697235,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 5.078819274902344,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.014375339262187481,
+ "learning_rate": 0.00057651708808768,
+ "loss": 5.117932319641113,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.014193729497492313,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 5.120802879333496,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.014532172121107578,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 5.207902908325195,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.014813744463026524,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 5.086306095123291,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.016359850764274597,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 5.099765777587891,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.015514666214585304,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 5.122977256774902,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.013010063208639622,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 5.074462413787842,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.01264589000493288,
+ "learning_rate": 0.000575784433093151,
+ "loss": 5.192168235778809,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.01255044061690569,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 5.101238250732422,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.01483173482120037,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 5.12666654586792,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.016873158514499664,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 5.119764804840088,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.019314853474497795,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 5.041164398193359,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.019004670903086662,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 5.022124290466309,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.01538187824189663,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 5.122385025024414,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.012774625793099403,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 5.027757167816162,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.012155911885201931,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 5.035344123840332,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.01177757978439331,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 5.084794521331787,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.011926035396754742,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 5.034863471984863,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.014685200527310371,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 5.030754089355469,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.014250976964831352,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 5.038878440856934,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.012865993194282055,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 5.153435707092285,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.013370024040341377,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 5.135447978973389,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.014055739156901836,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.949472427368164,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.0123061528429389,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 5.050948619842529,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.014919043518602848,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 5.1167402267456055,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.017639879137277603,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.987825870513916,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.015975885093212128,
+ "learning_rate": 0.000573741597999996,
+ "loss": 5.137160301208496,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.013337554410099983,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 5.009420394897461,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.015843696892261505,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 5.060955047607422,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.017849314957857132,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 5.053229808807373,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 5.1489739418029785,
+ "eval_runtime": 85.0375,
+ "eval_samples_per_second": 28.717,
+ "eval_steps_per_second": 1.799,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.017291778698563576,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.9362897872924805,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.01617325469851494,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 5.00312614440918,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.015129385516047478,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.965919494628906,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.016010679304599762,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.963332176208496,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.016074974089860916,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 5.047786712646484,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.016416288912296295,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.933089256286621,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.0179136972874403,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 5.062743186950684,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.018153930082917213,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.972370624542236,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.013910509645938873,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.979610919952393,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.015523887239396572,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.94517707824707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.014461930841207504,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.9728779792785645,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.011272265575826168,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.901429176330566,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.010767592117190361,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.960606575012207,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.011209312826395035,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 5.02777099609375,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.01252889446914196,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.968598365783691,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.011645635589957237,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.999159336090088,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.011838224716484547,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.892084121704102,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.010595501400530338,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.966053009033203,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.010286947712302208,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 5.043610572814941,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.010098195634782314,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.89932107925415,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.009989509359002113,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 5.066478729248047,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.010472428984940052,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 5.006222724914551,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.009732303209602833,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.986772537231445,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.009273585863411427,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.917914390563965,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.009114246815443039,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.9912614822387695,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.010252897627651691,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.865337371826172,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.010941877961158752,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.91510009765625,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.011518500745296478,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.946720123291016,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.01133528258651495,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.894189834594727,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.011014984920620918,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.886866569519043,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.011294242925941944,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 5.047197341918945,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.011261080391705036,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 5.001805305480957,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.011118849739432335,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.954325199127197,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.011115566827356815,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.941108703613281,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.01289173774421215,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.902257919311523,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.014443684369325638,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.872808933258057,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.013471108861267567,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 5.007323265075684,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.013660935685038567,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.908245086669922,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.012699900195002556,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.83580207824707,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.011619855649769306,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.994802474975586,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.01133702788501978,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.868106842041016,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.010943718254566193,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.953179836273193,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.011188222095370293,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.919573783874512,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.011193757876753807,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.910933494567871,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.01147502288222313,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.917362689971924,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.011783266440033913,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.9124755859375,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.012360898777842522,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.937455177307129,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.012707249261438847,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.951364517211914,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.011546858586370945,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.814150333404541,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.012478888034820557,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.880645751953125,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.013027345761656761,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.875164985656738,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.012725656852126122,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.948225975036621,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.012536967173218727,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.95546293258667,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.011728301644325256,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.9085798263549805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.011729695834219456,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.904460906982422,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.012308151461184025,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.838315010070801,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.01275448314845562,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.775474548339844,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.011454567313194275,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.827291011810303,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.012384319677948952,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.947248935699463,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.016197865828871727,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.902002334594727,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.018574615940451622,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 5.0348591804504395,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.022563260048627853,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.883276462554932,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.021542418748140335,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.865341663360596,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.01723058521747589,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.945857048034668,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.016199355944991112,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.918023109436035,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.017119145020842552,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.929662704467773,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.017424656078219414,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.8556013107299805,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.020041635259985924,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.922337532043457,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.02249862626194954,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.946372032165527,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.025063514709472656,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.882322311401367,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.025406574830412865,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.926576614379883,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.0205213725566864,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.783541679382324,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 5.104274272918701,
+ "eval_runtime": 86.3842,
+ "eval_samples_per_second": 28.269,
+ "eval_steps_per_second": 1.771,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.02003413811326027,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.855752468109131,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.02039312571287155,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.915566444396973,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.021981164813041687,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.766201019287109,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.0211714468896389,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.782377243041992,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.016799060627818108,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.894176483154297,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.017105525359511375,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.860858917236328,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.01815815642476082,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.8880181312561035,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.015354109928011894,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.912380695343018,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.014911225996911526,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.947767734527588,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.01572701334953308,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.978803634643555,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.014393123798072338,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.821687698364258,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.013853025622665882,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.876555442810059,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.013616051524877548,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.863683700561523,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.012183817103505135,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.867766380310059,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.01092216745018959,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.771709442138672,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.009421056136488914,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.8199334144592285,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.009249527007341385,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.84105920791626,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.008230697363615036,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.808452129364014,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.007976644672453403,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.739258766174316,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.008025229908525944,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.795211315155029,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.008175364695489407,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.821599006652832,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.007546804379671812,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.880331039428711,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.007615215610712767,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.813009262084961,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.007236811798065901,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.828673362731934,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.007647691294550896,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.837654113769531,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.008167068473994732,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.847842216491699,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.007732721511274576,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.792609214782715,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.00789599772542715,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.792180061340332,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.00813992228358984,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.793195724487305,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.008324305526912212,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.796878337860107,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.007190392352640629,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.803930282592773,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.007849691435694695,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.874082565307617,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.008076706901192665,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.805395126342773,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.008359378203749657,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.889337539672852,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.009297726675868034,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.763136863708496,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.010866363532841206,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.8252105712890625,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.011346216313540936,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.772512435913086,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.010006662458181381,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.850006580352783,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.009972674772143364,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.801948547363281,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.010139977559447289,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.868389129638672,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.012105760164558887,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.914427757263184,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.012863215059041977,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.879065990447998,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.014202345162630081,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.827332019805908,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.01341334544122219,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.7548298835754395,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.011573253199458122,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.848987102508545,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.012271814979612827,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.833166122436523,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.012164757587015629,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.718890190124512,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.012128190137445927,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.814055442810059,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.01065946463495493,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.683886528015137,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.010598101653158665,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.807164192199707,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.010451419278979301,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.840564250946045,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.010307732969522476,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.767976760864258,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.010515253059566021,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.7622833251953125,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.011067482642829418,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.748515605926514,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.01168802846223116,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.83959436416626,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.012140284292399883,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.840265274047852,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.011859198100864887,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.832376480102539,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.010489710606634617,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.719873428344727,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.011007163673639297,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.786980152130127,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.010347128845751286,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.634620189666748,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.011942901648581028,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.771518707275391,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.011532650329172611,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.7362470626831055,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.01082494854927063,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.780362129211426,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.011637461371719837,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.7647504806518555,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.013275853358209133,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.739512920379639,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.015444549731910229,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.745584011077881,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.015130757354199886,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.73331356048584,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.013685095123946667,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.821434020996094,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.015953628346323967,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.6642560958862305,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.014558154158294201,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.749669075012207,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.014322794042527676,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.811418056488037,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.012733100913465023,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.82190465927124,
+ "step": 720
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 3.0682729188163584e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/i5-exp-lm/checkpoint-720/training_args.bin b/runs/i5-exp-lm/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..1da180957797c93d1e8f6e61de596e66c4d9649c
--- /dev/null
+++ b/runs/i5-exp-lm/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64bde93c39656fd96adbd11f0094e06d4b908c795122b5a1c922d78cacdfd6fa
+size 4792